본문 바로가기

open coding

앱 출시 오류 This App Bundle contains Java/Kotlin code, which might be obfuscated. 아티팩트 유형 은 난독 화 될 수 있는 자바 Kotlin 코드를 포함 합니다. 해결방법.

반응형

google play console에 앱 출시시,

 

This App Bundle contains Java/Kotlin code, which might be obfuscated. We recommend you upload a deobfuscation file to make your crashes and ANRs easier to analyze and debug 오류 발생

 

(App Bundle 아티팩트 유형 은 난독 화 될 수 있는 자바 Kotlin 코드를 포함 합니다 오류)

 

해결방안

build.gradle(app) 에서  minifyEnabled를 true로 수정후 다시 등록.

 

enable minify in your build.gradle(app) file:

 

buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    } 

 

stackoverflow.com/questions/63749162/android-version-release-warning-message-this-app-bundle-contains-java-kotlin-co

 

Android version release warning message: This App Bundle contains Java/Kotlin code, which might be obfuscated

I got this warning message: This App Bundle contains Java/Kotlin code, which might be obfuscated. We recommend you upload a deobfuscation file to make your crashes and ANRs easier to analyze and d...

stackoverflow.com