2021-05-09 18:42:28 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
2021-05-15 15:34:13 +00:00
|
|
|
val hiltVersion by extra("2.35")
|
|
|
|
val kotlinVersion by extra("1.4.32")
|
2021-05-09 18:42:28 +00:00
|
|
|
dependencies {
|
|
|
|
classpath("com.android.tools.build:gradle:7.0.0-alpha15")
|
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
|
2021-05-15 15:34:13 +00:00
|
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
|
2021-05-09 18:42:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|