Coding⏱️ 2 min read📅 2026-05-31

How to Fix: Playstore error: App Bundle contains native code, and you've not uploaded debug symbols

Flutter app bundle native code error fix.

Quick Answer: Add the android defaultConfig ndk debugSymbolLevel to your app/build.gradle file, set it to 'FULL' and upload a symbol file for easier crash and ANR analysis.

To resolve the 'App Bundle contains native code, and you've not uploaded debug symbols' error when releasing a new Flutter app bundle to the Playstore, follow these steps.

💡 Why You Are Getting This Error

  • [Cause]

🔧 Proven Troubleshooting Steps

Method 1: Enable Debug Symbols

  1. Step 1: Go to your project's android/app/src/main/java directory and open the BuildConfig.java file.

Method 2: Upload Debug Symbols using Android Studio

  1. Step 1: Open your project in Android Studio and navigate to Build Variation, then select the Debug variant.

💡 Conclusion

By following these steps, you should be able to resolve the 'App Bundle contains native code, and you've not uploaded debug symbols' error and successfully release your Flutter app bundle to the Playstore.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions