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

android {
    compileSdkVersion 21
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "org.fox.ttcomics"
        minSdkVersion 16
        targetSdkVersion 21
    }

    lintOptions {
         abortOnError false
    }

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

dependencies {
    compile 'com.android.support:support-v4:21.0.3'
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.android.support:cardview-v7:21.0.3'
    compile 'it.neokree:MaterialTabs:0.11'
    compile files('libs/universal-image-loader-1.9.3.jar')
    compile 'ch.acra:acra:4.5.0'
}