PlayerAndroid/build.gradle

26 lines
534 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 {
repositories {
jcenter()
google()
}
dependencies {
2018-08-30 09:29:30 +00:00
classpath 'com.android.tools.build:gradle:3.3.0-alpha07'
2018-07-27 13:07:33 +00:00
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
2018-08-22 17:54:07 +00:00
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
2018-07-27 13:07:33 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}