Files
fast-messenger/build.gradle.kts
T
2021-08-04 23:01:22 +03:00

27 lines
634 B
Kotlin

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20")
classpath("com.android.tools.build:gradle:7.0.0")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.37")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
//maven { url 'https://jitpack.io' }
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}