PlayerAndroid/build.gradle

26 lines
553 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-06-22 17:44:21 +00:00
ext.kotlin_version = '1.3.40'
2018-07-27 13:07:33 +00:00
repositories {
jcenter()
google()
}
dependencies {
2019-06-22 17:44:21 +00:00
classpath 'com.android.tools.build:gradle:3.3.2'
2018-12-12 21:27:37 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2018-07-27 13:07:33 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}