1
0
Fork 0
mirror of https://git.sr.ht/~oppen/ariane synced 2024-12-25 17:28:06 +00:00
ariane/build.gradle
2020-11-09 02:23:53 +00:00

22 lines
No EOL
408 B
Groovy

buildscript {
ext.kotlin_version = "1.4.10"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}