build.gradle shring and minify

backend_nfc
Serik.Uvaissov 2020-08-23 18:19:07 +06:00
parent e06d192dcb
commit b83d8974df
1 changed files with 7 additions and 3 deletions

View File

@ -67,15 +67,19 @@ android {
buildConfigField ("String[]", "SUPPORTED_DEVICES", collectSupportedDevicesToArray())
}
debug {
//applicationIdSuffix ".debug"
//versionNameSuffix "-debug"
//resValue "string", "app_name", "Aman Kassa (debug)"
shrinkResources false
minifyEnabled false
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
defaultConfig {
minSdkVersion 24
}
}
release {
shrinkResources false
minifyEnabled false
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}