App release warning message

While releasing the app in Google Play consol I got this Warning -

"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. "

What does it mean and how can it be resolved ?

This means that your code could be obfuscated by proguard so any crash analysis systems could give unreadable logs and advises to create and upload a de-obfuscation file. In Android Studio, you can do by enabling minify in build.gradle(app).

You don’t have to worry about this warning. It’s a warning coming from the new Google Play Console. You can solve it by setting your minimum API level to 29.

For more information, check this: New BETA Version of Google Play Console show this warning: [This App Bundle contains Java/Kotlin code] · Issue #1008 · apache/cordova-android · GitHub

Hope, it helps. :slight_smile:

3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.