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.
So you can ignore it!
转载自:http://groups.google.com/group/android-developers/browse_thread/thread/addd2a507ea8b166
本文探讨了通过命令行使用am命令启动Android应用时出现的竞态条件问题。此问题源于主线程关闭的同时尝试创建新线程,导致虚拟机拒绝请求。文章指出该错误信息已计划在未来版本中调整,并确认开发者可以忽略这一警告。
992

被折叠的 条评论
为什么被折叠?



