mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
579 B
Kotlin
20 lines
579 B
Kotlin
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:4.0.1")
|
|
classpath("com.google.gms:google-services:4.3.3")
|
|
classpath("com.google.firebase:firebase-crashlytics-gradle:2.2.1")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.hilt}")
|
|
}
|
|
}
|
|
|
|
tasks.getByName<Wrapper>("wrapper") {
|
|
gradleVersion = "6.1.1"
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
}
|