build.gradle 772 字节
Newer Older
1 2 3 4 5 6 7
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
Z
Zhang Rui 已提交
8
        classpath 'com.android.tools.build:gradle:2.1.3'
9

Z
Zhang Rui 已提交
10 11
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
12 13 14 15 16 17 18 19 20 21 22 23
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

ext {
Z
Zhang Rui 已提交
24
    compileSdkVersion = 23
25
    buildToolsVersion = "23.0.3"
26

27 28
    targetSdkVersion = 23

X
k0.7.0  
Xinzheng Zhang 已提交
29 30
    versionCode = 700000
    versionName = "0.7.0"
31 32 33
}

wrapper {
Z
Zhang Rui 已提交
34
    gradleVersion = '2.14.1'
Z
Zhang Rui 已提交
35
}