PlayerAndroid/build.gradle

32 lines
697 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 {
2018-09-09 19:44:46 +00:00
ext {
2018-11-13 03:30:08 +00:00
supportLibVersion = '1.0.0'
2018-09-09 19:44:46 +00:00
firebase = "11.8.0"
retrofit = "2.3.0"
2018-11-23 16:33:04 +00:00
butterKnife = "9.0.0-rc1"
2018-09-09 19:44:46 +00:00
materialDialog = "0.9.6.0"
}
2018-07-27 13:07:33 +00:00
repositories {
jcenter()
google()
}
dependencies {
2018-11-13 03:30:08 +00:00
classpath 'com.android.tools.build:gradle:3.2.1'
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
}