0

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!

1
  • It's only 1/2 the answer, but here is what I found that gets rid of the first warning: <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 *.so files, 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. Commented Feb 1 at 23:57

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.