Hello,
You can enable the ProGuard for Xamarin android.
Then edit ProGuard Configuration: Open the proguard.cfg file and add the following lines to configure ProGuard to strip native debugging symbols:
-dontnote
-dontwarn
-verbose
For more details, please check ProGuard General Options
As note:
- ProGuard might not completely remove all native debugging symbols, but it can significantly reduce their presence in the final APK.
- Stripping debugging symbols may affect your ability to debug native code in production builds. Make sure you have sufficient logging and monitoring mechanisms in place.
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.