Browse Source

[core/android] Fix wrong publication of androidRelease (#2699)

ヒューマンワーキン 2 years ago
parent
commit
9a6b9cc900
1 changed files with 1 additions and 1 deletions
  1. 1 1
      buildSrc/src/main/kotlin/Android.kt

+ 1 - 1
buildSrc/src/main/kotlin/Android.kt

@@ -174,7 +174,7 @@ private fun Project.configureAndroidTargetWithSdk(androidNamespace: String) {
             targetCompatibility = JavaVersion.VERSION_1_8
         }
         buildTypes.getByName("release") {
-            isMinifyEnabled = true
+            isMinifyEnabled = false
             isShrinkResources = false
             proguardFiles(
                 getDefaultProguardFile("proguard-android-optimize.txt"),