Android Errors in Real Time
bugsense.com
Android Errors in Real Time
1–10 of 10 posts
Re: Android Errors in Real Time
#2Re: Android Errors in Real Time
#3Re: Android Errors in Real Time
#4Re: Android Errors in Real Time
#5It's staggering how many of these are NullPointerExceptions. Java needs nullable types.
Re: Android Errors in Real Time
#6Very useful info, if it's accurate. Mostly nullPtr exceptions, signs of sloppy programming. One pitfall IMO of Android is how easy it is to push apps to the market.
Re: Android Errors in Real Time
#7Very useful info, if it's accurate. Mostly nullPtr exceptions, signs of sloppy programming. One pitfall IMO of Android is how easy it is to push apps to the market.
Re: Android Errors in Real Time
#8Very useful info, if it's accurate. Mostly nullPtr exceptions, signs of sloppy programming. One pitfall IMO of Android is how easy it is to push apps to the market.
It's more a failing of mainstream programming languages having nulls.
Re: Android Errors in Real Time
#9It's staggering how many of these are NullPointerExceptions. Java needs nullable types.
There are also the Error classes (including OutOfMemoryError) that wouldn't automatically be caught, but there aren't many likely candidates there either.
Re: Android Errors in Real Time
#10Earlier quoted context omitted.
It's more a failing of mainstream programming languages having nulls.
Oh totally agree, I just think more care could be taken since these are obvious issues, and have been for relative ages now. I just hate how easy it is to slap together an apk and throw it on the market, though Play Store's vastness is nice for the keen users.