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.
28 lines
486 B
Groovy
28 lines
486 B
Groovy
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
// https://github.com/gradle/gradle/issues/16958
|
|
classpath "${libs.plugins.android.get()}"
|
|
classpath "${libs.plugins.kotlin.get()}"
|
|
classpath "${libs.plugins.hilt.get()}"
|
|
classpath "${libs.plugins.ksp.get()}"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url 'https://jitpack.io'
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.layout.buildDirectory
|
|
}
|