I have created android build of my Flutter application.
Then I created an internal testing release. It is showing a warning
This App Bundle contains native code, and you've not uploaded debug
symbols. We recommend you upload a symbol file to make your crashes
and ANRs easier to analyze and debug.
Basically what I had to do is add following to build.gradle file according to the link they show.
android.buildTypes.release.ndk.debugSymbolLevel = { SYMBOL_TABLE | FULL }
I assume it is android/app/build.gradle they are talking about.
Not sure exactly where in that file I have to add this line.
Can someone point out where to add this line?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…