build.gradle 853 字节
Newer Older
Z
ZhaoKaiQiang 已提交
1 2 3 4 5 6 7
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
Z
uodate  
ZhaoKaiQiang 已提交
8
        applicationId "com.socks.sample"
Z
ZhaoKaiQiang 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
        minSdkVersion 8
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {

        debug {
            buildConfigField "boolean", "LOG_DEBUG", "true"
            minifyEnabled false
        }

        release {
            buildConfigField "boolean", "LOG_DEBUG", "false"
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:23.1.0'
32 33
//    compile 'com.github.zhaokaiqiang.klog:library:0.1.0'
    compile project(':library')
Z
ZhaoKaiQiang 已提交
34
}