summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/build.gradle
blob: 1af0c25529a0385b330646da07e3250e69fdee41 (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
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23"

    defaultConfig {
        applicationId "org.fox.ttcomics2"
        minSdkVersion 19
        targetSdkVersion 23
    }

    lintOptions {
         abortOnError false
        checkReleaseBuilds false
        disable 'MissingTranslation'
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:23.1.1'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'it.neokree:MaterialTabs:0.11'
    compile 'com.shamanland:fab:0.0.5'
    compile 'jp.co.recruit_mp:android-HeaderFooterGridView:0.2.4'
    compile files('libs/universal-image-loader-1.9.3.jar')
    compile 'ch.acra:acra:4.5.0'
    compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'
    compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar'
    compile files('libs/nineoldandroids-2.4.0.jar')
}