incendio Well-Known Member Licensed User Longtime User Jul 1, 2019 #1 Hi guys, I got NullPointerException from the Crash Report of Google Play Console. I suspect, there is a Sub that made that Error. So I have modified that Sub like this B4X: Try Catch Log(LastException) End Try My Question is, if the code already included within try and catch, when error happen, will Crash Report catched & report it as a crashed or not?
Hi guys, I got NullPointerException from the Crash Report of Google Play Console. I suspect, there is a Sub that made that Error. So I have modified that Sub like this B4X: Try Catch Log(LastException) End Try My Question is, if the code already included within try and catch, when error happen, will Crash Report catched & report it as a crashed or not?
Erel B4X founder Staff member Licensed User Longtime User Jul 1, 2019 #2 Caught exceptions are not reported. Upvote 0
incendio Well-Known Member Licensed User Longtime User Jul 1, 2019 #3 Thanks for the replied. So, the error was from other subs. Do you know how to track this error to which sub? From Play Console, only got NullPointerException in utility_vvvvvv5 No idea, which sub that caused this error. Upvote 0
Thanks for the replied. So, the error was from other subs. Do you know how to track this error to which sub? From Play Console, only got NullPointerException in utility_vvvvvv5 No idea, which sub that caused this error.
Erel B4X founder Staff member Licensed User Longtime User Jul 1, 2019 #4 I recommend you to use Crashlytics. It provides more information. When you compile in obfuscation mode it creates a "map" file in the Objects folder that maps between the original names and the obfuscated names. Upvote 0
I recommend you to use Crashlytics. It provides more information. When you compile in obfuscation mode it creates a "map" file in the Objects folder that maps between the original names and the obfuscated names.
incendio Well-Known Member Licensed User Longtime User Jul 1, 2019 #5 I found the file ObfuscatorMap.txt in the Object folder. From the error in Google Play Console utility_vvvvvv5, does it mean look for vvvvvv5 in the ObfuscatorMap to find the original Sub name? Upvote 0
I found the file ObfuscatorMap.txt in the Object folder. From the error in Google Play Console utility_vvvvvv5, does it mean look for vvvvvv5 in the ObfuscatorMap to find the original Sub name?