mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 13:09:24 +01:00
Merge branch 'MTRNord/fix-proguard-moor' into 'master'
[Proguard] Fix file location, make it more aggressive and remove deprecated option See merge request ChristianPauly/fluffychat-flutter!52
This commit is contained in:
commit
b2fa5ef97d
@ -73,7 +73,6 @@ android {
|
|||||||
release {
|
release {
|
||||||
signingConfig signingConfigs.release
|
signingConfig signingConfigs.release
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
useProguard true
|
|
||||||
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
-optimizationpasses 5
|
||||||
## Flutter wrapper
|
## Flutter wrapper
|
||||||
-keep class io.flutter.app.** { *; }
|
-keep class io.flutter.app.** { *; }
|
||||||
-keep class io.flutter.plugin.** { *; }
|
-keep class io.flutter.plugin.** { *; }
|
||||||
@ -6,4 +7,5 @@
|
|||||||
-keep class io.flutter.** { *; }
|
-keep class io.flutter.** { *; }
|
||||||
-keep class io.flutter.plugins.** { *; }
|
-keep class io.flutter.plugins.** { *; }
|
||||||
-dontwarn io.flutter.embedding.**
|
-dontwarn io.flutter.embedding.**
|
||||||
|
## Sqlite Encryption
|
||||||
-keep class net.sqlcipher.** { *; }
|
-keep class net.sqlcipher.** { *; }
|
Loading…
Reference in New Issue
Block a user