Disable proguard's minify until it can be properly configured
This commit is contained in:
parent
4ab5ecbe6e
commit
26abfffb1d
1 changed files with 2 additions and 2 deletions
|
@ -28,13 +28,13 @@ android {
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
// enable crashlytics
|
// enable crashlytics
|
||||||
ext.enableCrashlytics = true
|
ext.enableCrashlytics = true
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
minifyEnabled true
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
resValue("string", "PORT_NUMBER", "8082")
|
resValue("string", "PORT_NUMBER", "8082")
|
||||||
// disable crashlytics
|
// disable crashlytics
|
||||||
|
|
Loading…
Reference in a new issue