This commit is contained in:
Ishan09811 2024-01-25 17:02:41 +05:30 committed by GitHub
parent c3fd7d07ea
commit 31488a0bd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,20 +21,21 @@ android {
} }
buildTypes { buildTypes {
release { getByName("release") {
minifyEnabled true isMinifyEnabled = true
shrinkResources true isShrinkResources = true
proguardFiles( proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro" "proguard-rules.pro"
) )
} }
debug { getByName("debug") {
minifyEnabled false isMinifyEnabled = false
shrinkResources false isShrinkResources = false
debuggable true isDebuggable = true
proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
) )
} }
} }
@ -50,4 +51,4 @@ dependencies {
implementation("androidx.preference:preference:1.2.1") implementation("androidx.preference:preference:1.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("com.google.code.gson:gson:2.10.1") implementation("com.google.code.gson:gson:2.10.1")
} }