HeliBoard/build.gradle

28 lines
644 B
Groovy
Raw Normal View History

2019-12-31 18:19:35 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-05-03 09:12:23 +02:00
ext.kotlin_version = '1.4.30'
2019-12-31 18:19:35 +01:00
repositories {
jcenter()
google()
}
dependencies {
2021-06-14 10:01:57 +02:00
classpath 'com.android.tools.build:gradle:4.2.1'
2020-01-20 19:24:43 +01:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2019-12-31 18:19:35 +01:00
// 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
}