We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feed75b commit 65d710aCopy full SHA for 65d710a
frontend_app/android/app/build.gradle
@@ -58,6 +58,11 @@ android {
58
buildTypes {
59
release {
60
signingConfig signingConfigs.release
61
+
62
+ minifyEnabled true
63
+ useProguard true
64
65
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
66
}
67
68
frontend_app/android/app/proguard-rules.pro
@@ -0,0 +1,8 @@
1
+## Flutter wrapper
2
+-keep class io.flutter.app.** { *; }
3
+-keep class io.flutter.plugin.** { *; }
4
+-keep class io.flutter.util.** { *; }
5
+-keep class io.flutter.view.** { *; }
6
+-keep class io.flutter.** { *; }
7
+-keep class io.flutter.plugins.** { *; }
8
+-dontwarn io.flutter.embedding.**
0 commit comments