PlayerAndroid/build.gradle

27 lines
614 B
Groovy
Raw Normal View History

2018-07-27 13:07:33 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-10-31 17:06:13 +00:00
ext.kotlin_version = '1.3.41'
2018-07-27 13:07:33 +00:00
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
2018-12-12 21:27:37 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:bundletool:0.9.0'
2018-07-27 13:07:33 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}