buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.11.+' } } apply plugin: 'android' repositories { mavenCentral() } tasks.withType(JavaCompile) { options.encoding = "UTF-8" } dependencies { compile 'com.android.support:support-v4:19.0.+' compile 'com.google.android.gms:play-services:4.1.+' compile 'net.hockeyapp.android:HockeySDK:3.0.1' } android { compileSdkVersion 19 buildToolsVersion '19.1.0' aaptOptions.useAaptPngCruncher = true signingConfigs { debug { storeFile file("config/debug.keystore") } release { storeFile file("config/release.keystore") storePassword RELEASE_STORE_PASSWORD keyAlias RELEASE_KEY_ALIAS keyPassword RELEASE_KEY_PASSWORD } } buildTypes { debug { debuggable true jniDebugBuild false signingConfig signingConfigs.debug } release { debuggable false jniDebugBuild false signingConfig signingConfigs.release } foss { debuggable false jniDebugBuild false signingConfig signingConfigs.release } } sourceSets.main { jniLibs.srcDir 'libs' jni.srcDirs = [] //disable automatic ndk-build call } sourceSets { debug { manifest.srcFile 'config/debug/AndroidManifest.xml' } release { manifest.srcFile 'config/release/AndroidManifest.xml' } foss { manifest.srcFile 'config/foss/AndroidManifest.xml' } } defaultConfig { minSdkVersion 8 targetSdkVersion 19 versionCode 251 versionName "1.5.0" } }