1
0
mirror of https://codeberg.org/gitnex/GitNex synced 2025-02-23 15:28:04 +01:00

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_ *.ap_
*.aab *.aab
# Release dir
app/release/*
# Files for the ART/Dalvik VM # Files for the ART/Dalvik VM
*.dex *.dex

View File

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