HeliBoard/build.gradle

28 lines
654 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 {
2023-06-25 14:51:13 +02:00
ext.kotlin_version = '1.8.22'
2019-12-31 18:19:35 +01:00
repositories {
2023-06-25 14:51:13 +02:00
mavenCentral()
2019-12-31 18:19:35 +01:00
google()
}
dependencies {
2023-06-25 14:51:13 +02:00
classpath 'com.android.tools.build:gradle:7.4.2'
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()
2023-06-25 14:51:13 +02:00
mavenCentral()
2019-12-31 18:19:35 +01:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}