2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 06:05:12 +00:00

Fast compilation

This commit is contained in:
Albert Vaca
2016-06-16 23:47:11 +02:00
parent 8a413bb42e
commit 5ed1b80716

View File

@@ -15,7 +15,7 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 9 minSdkVersion 9
targetSdkVersion 22 //Bumping to 23 means we have to support the new permissions model targetSdkVersion 22 //Bumping to 23 means we have to support the new permissions model
multiDexEnabled true //multiDexEnabled true
testInstrumentationRunner "com.android.test.runner.MultiDexTestRunner" testInstrumentationRunner "com.android.test.runner.MultiDexTestRunner"
} }
dexOptions { dexOptions {
@@ -53,6 +53,10 @@ android {
checkReleaseBuilds false checkReleaseBuilds false
} }
buildTypes { buildTypes {
debug {
minifyEnabled false
useProguard false
}
release { //keep on 'releae', set to 'all' when testing to make sure proguard is not deleting important stuff release { //keep on 'releae', set to 'all' when testing to make sure proguard is not deleting important stuff
minifyEnabled true minifyEnabled true
useProguard true useProguard true