aboutsummaryrefslogtreecommitdiffstats
path: root/app/build.gradle
blob: c8100f5949d547ab5d871a71575e8f7882384941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'io.fabric'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

    defaultConfig {
        applicationId "jp.rhe.smileessence3"
        minSdkVersion 21
        targetSdkVersion 25

        versionName "git -C ${rootDir} describe --tags --long --dirty --always".execute().text.trim()
        versionCode "git -C ${rootDir} rev-list HEAD --count".execute().text.trim().toInteger()
        println "-----------VERSION----------"
        println "- CODE: " + getVersionCode()
        println "- NAME: " + getVersionName()
        println "----------------------------"
    }
    buildTypes {
        debug {
            applicationIdSuffix ".debug"
            ext.enableCrashlytics = false
        }
        release {
            applicationIdSuffix ".release"
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        release2.initWith(buildTypes.release)
        release2 {
            applicationIdSuffix ".release2"
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/services/javax.annotation.processing.Processor'
    }
    lintOptions {
        abortOnError false
        checkReleaseBuilds false
    }
    dexOptions {
        preDexLibraries = false
    }
}

dependencies {
    compile 'com.android.support:support-v4:25.+'
    compile 'com.android.support:support-v13:25.+'
    // volley
    compile 'com.android.volley:volley:1.0.0'
    // crouton
    compile('de.keyboardsurfer.android.widget:crouton:1.8.5@aar') {
        // exclusion is not necessary, but generally a good idea.
        exclude group: 'com.google.android', module: 'support-v4'
    }
    // pull to refresh
    compile 'com.navercorp.pulltorefresh:library:3.3.0-SNAPSHOT@aar'
    // twitter4j
    compile 'org.twitter4j:twitter4j-core:4.0.6'
    compile 'org.twitter4j:twitter4j-media-support:4.0.6'
    compile 'org.twitter4j:twitter4j-stream:4.0.6'
    // twitter-text
    compile 'com.twitter:twitter-text:1.14.7'

    annotationProcessor "com.github.gfx.android.orma:orma-processor:4.2.5"
    compile "com.github.gfx.android.orma:orma:4.2.5"

    // Fabric
    compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
        transitive = true;
    }

    // LeakCanary

    debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5.4'
    releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
    release2Compile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
}