Blame view

app/build.gradle 3.28 KB
54127ffd   陶汉栋   no message
1
2
3
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao' // apply plugin

5e12efe8   陶汉栋   no message
4
android {
54127ffd   陶汉栋   no message
5
6
7
    signingConfigs {
        config {
            keyAlias 'key0'
5e12efe8   陶汉栋   no message
8
            keyPassword '123456'
54127ffd   陶汉栋   no message
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
            storeFile file('../app/parent.jks')
            storePassword '123456'

        }
    }
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.shunzhi.parent"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 102
        versionName "1.0.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        javaCompileOptions {
            annotationProcessorOptions {
                includeCompileClasspath = true
            }
        }
    }
    buildTypes {
        release {
            minifyEnabled false