0
0
mirror of https://github.com/florisboard/florisboard.git synced 2024-09-20 03:52:18 +02:00
florisboard/build.gradle

30 lines
662 B
Groovy
Raw Normal View History

2020-04-08 23:21:33 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-04-19 20:22:10 +02:00
ext.kotlin_version = '1.3.72'
2020-04-08 23:21:33 +02:00
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
2020-04-08 23:21:33 +02:00
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
}