123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- jcenter()
- maven { url 'https://maven.fabric.io/public' }
- maven { url 'https://dl.bintray.com/umsdk/release' }
- google()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:2.3.3'
- // classpath 'io.fabric.tools:gradle:1.+'
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
- }
- allprojects {
- repositories {
- jcenter()
- maven { url "https://jitpack.io" }
- // maven { url 'https://maven.fabric.io/public' }
- maven {url 'http://developer.huawei.com/repo/'}
- google()
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
- ext{
- // 版本号相关
- versionCode = 1;
- versionName = '1.0.0'
- // 相关依赖库版本
- supportVersion = '25.+'
- butterknifeVersion = '8.5.1'
- geniusVersion = '2.0.0'
- glideVersion = '3.7.0'
- circleimageviewVersion = '2.1.0'
- easyPMVersion = "0.3.0"
- logging_interceptorVersion = '3.6.0'
- gsonVersion = '2.8.0'
- retrofitVersion = '2.1.0'
- getuiVersion = '2.9.3.0'
- dbflowVersion = "4.0.0-beta7"
- airpanelVersion = "1.1.0"
- lameVersion = "1.0.0"
- }
|