I'm having this warning when trying to publish my APK in Google Play:
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?