Skip to content

Commit e94bbc5

Browse files
Thanos update 1
Added comments to clarify release build configuration.
1 parent c89f22f commit e94bbc5

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

mobile/android/app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@ android {
2424

2525
buildTypes {
2626
getByName("release") {
27+
// Using debug signing for release config as requested in your original setup
2728
signingConfig = signingConfigs.getByName("debug")
29+
30+
// Critical for tree-shaking and stripping out unneeded classes
2831
isMinifyEnabled = true
2932
isShrinkResources = true
33+
3034
proguardFiles(
3135
getDefaultProguardFile("proguard-android-optimize.txt"),
3236
"proguard-rules.pro"
@@ -49,4 +53,4 @@ afterEvaluate {
4953
configurations.all {
5054
exclude(group = "com.google.android.play")
5155
}
52-
}
56+
}

0 commit comments

Comments
 (0)