[android-developers] weird crash

2011-09-24 Thread bob
I found this in my ACRA crash log. Anyone know what it means? java.lang.RuntimeException: An error occured while executing doInBackground() at android.os.AsyncTask$3.done(AsyncTask.java:200) at java.util.concurrent.FutureTask $Sync.innerSetException(FutureTask.java:274)

Re: [android-developers] weird crash

2011-09-24 Thread Rakshith Raj
First thing is you doing multi threading inside doInbackground or try doing it outside the async task. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

Re: [android-developers] weird crash

2011-09-24 Thread Kostya Vasilyev
Your async task's worker function crashes with the exception below. Some part of your code tries to parse an integer from Acc, which is not a valid string representation of a number. The exception here is unchecked, so the compiler didn't make you wrap the call to Integer.parse() with a catch

Re: [android-developers] weird crash

2011-09-24 Thread Nick Risaro
It looks like the server is sending a bad response to your phone's request. Check both ends, the client and the server and try to figure out why the server is sending the string Acc in the response code field. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Weird crash report on 2.3.3 Nexus One

2011-04-06 Thread webmonkey
A few users sent me an app crash report on build number GRI40 It crashes on the following: W/dalvikvm( 903): VFY: unable to resolve virtual method 291: Landroid/ graphics/Canvas;.drawText (Ljava/lang/String;IIFFLandroid/graphics/ Paint;)V java.lang.NoSuchMethodError: