App Bundle contains native code google play warning

4k views Asked by At

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.

1

There are 1 answers

0
Kamalpreet Singh On

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'