When I submit my Android app on the Google Play Console, I receive the following 2 warnings:
There is no deobfuscation file associated with this App Bundle. If you
use obfuscated code (R8/proguard), uploading a deobfuscation file will
make crashes and ANRs easier to analyze and debug. Using R8/proguard
can help reduce app size.
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.
I created my app using .NET for Android 9.0 using Visual Studio 2022 & C#. My *.csproj
file contains the following:
<IncludeSymbols>True</IncludeSymbols>
<DebugSymbols>True</DebugSymbols>
<DebugType>portable</DebugType>
What do I need to do to create the deobfuscation & symbol files? Thanks!