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!
<AndroidLinkTool>r8</AndroidLinkTool>It didn't seem to make the info from Google Play Console tests much more useful, but it did get rid of the first warning. As for the second warning, I have found stuff about*.sofiles, but (assuming that is what I am looking for) I have no idea how to make Visual Studio 2022 create it (and include it in the*.aab). I won't mark this as an answer, because it only answers half the question, but maybe it will help someone anyway.