c# - Creating a Deobfuscation File for Android using Visual Studio 2022 - Stack Overflow

admin2025-04-17  2

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!

转载请注明原文地址:http://anycun.com/QandA/1744847830a88457.html