apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "21.1.1" defaultConfig { applicationId "sanskritcode.sanskritdictionaryupdater" minSdkVersion 13 targetSdkVersion 21 versionCode 4 versionName "1.3" multiDexEnabled = true } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } dexOptions { javaMaxHeapSize "4g" } packagingOptions { exclude 'META-INF/DEPENDENCIES' exclude 'META-INF/LICENSE' exclude 'META-INF/LICENSE.txt' exclude 'META-INF/license.txt' exclude 'META-INF/NOTICE' exclude 'META-INF/NOTICE.txt' exclude 'META-INF/notice.txt' exclude 'META-INF/ASL2.0' exclude 'NOTICE' exclude 'LICENSE' exclude 'AUTHORS' } } dependencies { compile 'com.android.tools.build:gradle:1.0.0' compile 'com.android.support:appcompat-v7:21.0.0' compile 'com.loopj.android:android-async-http:1.4.5' compile 'org.apache.commons:commons-io:1.3.2' compile 'org.apache.commons:commons-compress:1.2' compile 'com.google.guava:guava:11.0.2' }