Disable proguard's minify meanwhile a solution is found to avoid wrong and different behavior in the app when minify is enabled.
This commit is contained in:
parent
6dc5e54ad1
commit
6d4b229e7e
1 changed files with 3 additions and 2 deletions
|
@ -18,8 +18,9 @@ android {
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
// TODO Fix minify issues and enable again
|
||||||
shrinkResources true
|
minifyEnabled false
|
||||||
|
shrinkResources false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
|
|
Loading…
Reference in a new issue