Fix crash caused by res shrinking and minification

This commit is contained in:
M M Arif 2020-04-17 15:10:32 +05:00
parent 31723008ed
commit b7abe65508
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -8,6 +8,9 @@
*.ap_
*.aab
# Release dir
app/release/*
# Files for the ART/Dalvik VM
*.dex

View File

@ -12,8 +12,8 @@ android {
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}