Skip to content

Commit

Permalink
Merge pull request #5 from Taewan-P/refactor/optimize-app-size
Browse files Browse the repository at this point in the history
Enable code & resource shrinking
  • Loading branch information
Taewan-P authored Jun 25, 2024
2 parents 1bf173a + 739ad0c commit 8aeec41
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId = "dev.chungjungsoo.gptmobile"
minSdk = 28
targetSdk = 34
versionCode = 3
versionName = "0.3.0"
versionCode = 4
versionName = "0.3.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand All @@ -40,7 +40,8 @@ android {

buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand Down

0 comments on commit 8aeec41

Please sign in to comment.