Skip to content

Commit 51ca901

Browse files
committed
- **refactor(details)**: Improved downgrade detection by primarily using the release list order, with semantic version comparison as a fallback.
- **chore(build)**: Enabled ProGuard (`isMinifyEnabled`) and resource shrinking (`isShrinkResources`) for release builds.
1 parent 22e9772 commit 51ca901

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build-logic/convention/src/main/kotlin/AndroidApplicationConventionPlugin.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ class AndroidApplicationConventionPlugin : Plugin<Project> {
3030
}
3131
buildTypes {
3232
getByName("release") {
33-
isMinifyEnabled = false
33+
isMinifyEnabled = true
34+
isShrinkResources = true
3435
}
3536
}
3637

0 commit comments

Comments
 (0)