added proguard conf for TiffBitmapFactory
This commit is contained in:
parent
69d120d9f7
commit
ad8e5253fd
3 changed files with 6 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -89,6 +89,6 @@ jobs:
|
|||
with:
|
||||
serviceAccountJsonPlainText: ${{ secrets.PLAYSTORE_ACCOUNT_KEY }}
|
||||
packageName: deckers.thibault.aves
|
||||
releaseFile: app-release.aab
|
||||
releaseFiles: app-release.aab
|
||||
track: beta
|
||||
whatsNewDirectory: whatsnew
|
||||
|
|
|
@ -79,6 +79,10 @@ android {
|
|||
}
|
||||
release {
|
||||
signingConfig signingConfigs.release
|
||||
|
||||
minifyEnabled true
|
||||
shrinkResources true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
1
android/app/proguard-rules.pro
vendored
Normal file
1
android/app/proguard-rules.pro
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
-keep class org.beyka.tiffbitmapfactory.**{ *; }
|
Loading…
Reference in a new issue