app_build.gradle revision 7d9836f8bd4f2525597b091787d0858784c6c22e
1apply plugin: 'com.android.application'
2apply plugin: 'com.android.databinding'
3
4android {
5    compileSdkVersion config.compileSdkVersion
6    buildToolsVersion config.buildToolsVersion
7
8    defaultConfig {
9        minSdkVersion 7
10        targetSdkVersion 21
11        versionCode 1
12        versionName "1.0"
13    }
14    buildTypes {
15        release {
16            minifyEnabled false
17            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18        }
19    }
20
21    packagingOptions {
22        exclude 'META-INF/services/javax.annotation.processing.Processor'
23    }
24    compileOptions {
25        sourceCompatibility JavaVersion.VERSION_1_7
26        targetCompatibility JavaVersion.VERSION_1_7
27    }
28}
29
30dependencies {
31    compile fileTree(dir: 'libs', include: ['*.jar'])
32    compile "com.android.support:support-v4:+"
33    !@{DEPENDENCIES}
34}
35