Merge pull request 'Fix crash caused by res shrinking and minification' (#421) from 420-fix-release-crash into master

Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/421
This commit is contained in:
M M Arif 2020-04-17 10:12:59 +00:00
commit 30165f27ba
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'
}
}