0

I'm having this warning when trying to publish my APK in Google Play:

enter image description here

I've read here in stackoverflow that the solution is to include in build.gradle's defaultConfig:

android {
compileSdkVersion 30
defaultConfig {
    applicationId 'com.example.myproject'
    minSdkVersion 21
    targetSdkVersion 30
    versionCode 1
    versionName "1.0.0"
    ndk {
        debugSymbolLevel 'FULL'
    }
}

as mentioned here Playstore error: App Bundle contains native code, and you've not uploaded debug symbols

My project does not have the NDK installed, so when trying to build with that ndk debugSymbolLevel, it gives me an error.

Is there anyway to remove this Google Play warning without having the NDK installed?

moyo
  • 1,312
  • 1
  • 13
  • 29

1 Answers1

0

This is a Bug.

I have tried many methods before. If you want fix this warning, refer this answer.