When logging in to Android Developer Console one can access the crash reports. Since I uploaded the mapping files, the logs are NOT obfuscated but still I am not sure how to read them:
java.lang.NullPointerException: 
    at com.my.app.Path.To.Package.CrashClass.methodA(TheClass.java)
    or                     .methodX (TheClass.java)
    or                     .methodY (TheClass.java)
    or                     .methodY (TheClass.java)
    at com.my.app.Path.To.Package.CallingClass$7.run (CallingClass.java) 
    at android.os.Handler.handleCallback (Handler.java:751) 
    at android.os.Handler.dispatchMessage (Handler.java:95) 
    at android.os.Looper.loop (Looper.java:154) 
    at android.app.ActivityThread.main (ActivityThread.java:6692) 
    at java.lang.reflect.Method.invoke (Method.java) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1468) 
    at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1358)
I do not understand what the information about methodA, or methodB, etc... 
Does this mean, is that a NullPointerException happen in each of these classes? 
Is this the call stack within the CrashClass (would be surprising sice methodX does not call methodA or vice versa)?
