nanoflux/build.gradle.kts

18 lines
583 B
Text
Raw Normal View History

// 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")
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")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}