On Mar 25, 3:27 am, Paolo <[email protected]> wrote: > When my app starts often I get this error. Only this one, anything > else, and my app works fine. > > What does it mean? > > ERROR/AndroidRuntime(28130): ERROR: thread attach failed
If you're starting your app from the command line, with the "am" command, then you're seeing a race condition in "am". In short, one part of the command is trying to create a bunch of threads while the main part is shutting down, so the VM rejects the attempt to attach a new thread. (The message comes from javaAttachThread() in frameworks/ base/core/jni/AndroidRuntime.cpp.) The message has been toned down a bit for a future release. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en To unsubscribe from this group, send email to android-developers+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

