29 lines
819 B
Groovy
29 lines
819 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
// classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.2'
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
|
|
}
|
|
maven { url 'http://developer.huawei.com/repo/' }
|
|
maven { url 'https://jitpack.io' }
|
|
maven {
|
|
url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
|
|
}
|
|
}
|
|
}
|
|
ext {
|
|
compileSdkVersion = 25
|
|
buildToolsVersion = "25.0.2"
|
|
minSdkVersion = 16
|
|
targetSdkVersion = 21
|
|
} |