I have an application with the Proguard function enabled (minifyenabled true) and recently received a crash report in the Google Play Dev console. When I looked at him, I saw the following:

I was surprised to see the full names of the classes and methods in line 1, since Proguard is enabled. I've always seen things like this:
at com.myname.myapp.cf (Unknown source)
I am also curious about what the line number looks like, since I do not save the line numbers in my Proguard configuration file (therefore, why I usually see the “Unknown Source” in my stacks).
I decompiled my .apk, looked into the classes.dex file, and everything looked fine. I found the class indicated on line 1 of the stack, and the class name really got confused, like the method name.
Now "MyActivity" (line 2 from stacktrace) is the launch of the Activity of my application and as such is declared in the manifest, so I understand why this name is not confused, and the onConnected method is not my method (it comes from Google Play Games Services), so which, again, is all right.
'MyMethodName' is called internally by onConnected as follows:
@Override public void onConnected(Bundle arg0) { myClassObject.myMethodName(); //Where myClassObject is an instance of MyClassName }
Debugging is disabled in my build.gradle file.
I do not upload mapping.txt files to the Play Console, I run retrace manually to see my de-obfuscated stacks.
I would be grateful if someone would help me understand why I see my full name of the class and method here? What can I do to prevent this?
android google-play deobfuscation proguard android-proguard
Zippy
source share