summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/build.gradle
blob: 6e3f0b3e231ab7b616bd925babe43da89a5240fe (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 25
    buildToolsVersion "25.0.3"

    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:25.3.1'
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.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.9.1'
    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')
}