1 apply plugin: 'com.android.application' 2 apply plugin: 'com.android.databinding' 3 4 android { 5 compileSdkVersion 21 6 buildToolsVersion "22" 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 30 dependencies { 31 compile fileTree(dir: 'libs', include: ['*.jar']) 32 compile "com.android.support:support-v4:+" 33 !@{DEPENDENCIES} 34 } 35