Remove isMinifyEnabled from library modules

This commit is contained in:
MM20
2022-02-08 21:20:54 +01:00
parent 658a29427c
commit 7a4e1e716f
35 changed files with 5 additions and 44 deletions
+5 -10
View File
@@ -32,18 +32,13 @@ android {
}
buildTypes {
release {
isMinifyEnabled = false
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android.txt"),
"proguard-rules.pro"
)
applicationIdSuffix = ".release"
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
postprocessing {
isRemoveUnusedCode = false
isObfuscate = false
isOptimizeCode = false
}
versionNameSuffix = "-" + buildTime()
}