Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I run my application in android 1.5 it works great, but when i just change the target to android 3.0 i get stuck at:

Waiting for HOME ('android.process.acore') to be launched...

I didn't change a single thing in my code...

Could you please tell me what could be the reason?

share|improve this question
That's a line in logcat? – Ted Hopp May 30 '11 at 22:34
yes the app gets stuck there – Adroidist May 30 '11 at 22:40

1 Answer

up vote 2 down vote accepted

Waiting for HOME ('android.process.acore') to be launched...

That is not from your app. That is from the emulator, which is taking too long to start up.

Could you please tell me what could be the reason?

The Android 3.0 emulator is extremely slow. Bump the "device RAM" setting to 1024MB in your AVD if you can spare the RAM, as that appears to help a bit. Otherwise, there is nothing you can really do.

share|improve this answer
thank you so much! i increased the device ram and had to restart eclipse for it to work. – Adroidist May 30 '11 at 23:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.