Ahmad Alaraj
Ahmad Alaraj

Reputation: 735

App Bundle contains native code google play warning

I got this warning when I was publishing my app

This App Bundle contains native code, and you've not uploaded debug symbols. We recommend that you upload a symbol file to make your crashes and ANRs easier to analyse and debug.

Upvotes: 0

Views: 5162

Answers (1)

Kamalpreet Singh
Kamalpreet Singh

Reputation: 11

It's just a warning, nothing else. Just go ahead.

if you want to remove that error then use following details:

1.

buildTypes {   release {
        signingConfig signingConfigs.release
        ndk {
          debugSymbolLevel 'FULL'
        }   } }

classpath 'com.android.tools.build:gradle:4.1.3'

Upvotes: 0

Related Questions