2018-04-13 15:47:23 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2019-04-28 01:25:23 +08:00
|
|
|
maven { url 'https://dl.bintray.com/umsdk/release' }
|
2018-04-13 15:47:23 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-11-18 16:01:01 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
2019-04-28 01:25:23 +08:00
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
|
|
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"
|
2018-04-13 15:47:23 +08:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
2019-04-28 01:25:23 +08:00
|
|
|
maven { url 'https://dl.bintray.com/umsdk/release' }
|
2018-04-13 15:47:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|