79728122

Date: 2025-08-07 06:10:34
Score: 0.5
Natty:
Report link

c.b.a.a$b->onReceive points to an obfuscated part of your code. It appears with this cryptic name because you have enabled ProGuard in your Android project, which obfuscates the code. Obfuscation creates a mapping file as well that lists all the mappings that took place during the obfuscation. For instance, Class A -> x, Class B -> p, etc.

To find out to which line of code this error refers, you can do the following:

  1. Go to Play Console and download the .aab file that Play Console mentions has a policy violation. (You can find it at Bundle Explorer)

  2. After the file is downloaded, rename it and change its file type to .zip.

  3. Open the zip file and navigate to a folder called BUNDLE-METADATA/com.android.tools.build.obfuscation/ and open the file proguard with VS Code, or just a text editor

  4. Using the "Find" tool (Command+F), find to which class and method c.b.a.a$b->onReceive is mapped.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: A.Ktns