1
0
Fork 0
mirror of https://git.sr.ht/~oppen/ariane synced 2024-12-27 02:10:30 +00:00
ariane/build.gradle

26 lines
641 B
Groovy
Raw Normal View History

2020-08-15 14:52:27 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-09-07 21:15:18 +00:00
ext.kotlin_version = "1.4.0"
2020-08-15 14:52:27 +00:00
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}