반응형
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'
}
}
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
'open coding' 카테고리의 다른 글
open coding. blinking animation/ fading animation (0) | 2020.12.17 |
---|---|
oepn coding. preferences 소규모 데이터 저장 기본 코딩 (0) | 2020.12.17 |
open coding. 안드로이드 스튜디오 animation추가/ android studio cardview sake animation (0) | 2020.12.01 |
open coding. 안드로이드 스튜디오 화면회전시 data유지 /화면고정/ (0) | 2020.11.29 |
open coding . 안드로이드 스튜디오 앱에 광고달기. (0) | 2020.11.27 |