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 c89f22f commit e94bbc5Copy full SHA for e94bbc5
1 file changed
mobile/android/app/build.gradle.kts
@@ -24,9 +24,13 @@ android {
24
25
buildTypes {
26
getByName("release") {
27
+ // Using debug signing for release config as requested in your original setup
28
signingConfig = signingConfigs.getByName("debug")
29
+
30
+ // Critical for tree-shaking and stripping out unneeded classes
31
isMinifyEnabled = true
32
isShrinkResources = true
33
34
proguardFiles(
35
getDefaultProguardFile("proguard-android-optimize.txt"),
36
"proguard-rules.pro"
@@ -49,4 +53,4 @@ afterEvaluate {
49
53
configurations.all {
50
54
exclude(group = "com.google.android.play")
51
55
}
52
-}
56
+}
0 commit comments