Application is not getting loaded in Emulator

Erastus

New member
I am getting this in console.

2010-08-06 12:58:33 - Now] New emulator found: emulator-5554
[2010-08-06 12:58:33 - Now] Waiting for HOME ('android.process.acore') to be launched...
[2010-08-06 12:59:17 - Now] WARNING: Application does not specify an API level requirement!
[2010-08-06 12:59:17 - Now] Device API version is 8 (Android 2.2)
[2010-08-06 12:59:17 - Now] HOME is up on device 'emulator-5554'
[2010-08-06 12:59:17 - Now] Uploading Now.apk onto device 'emulator-5554'
[2010-08-06 12:59:17 - Now] Installing Now.apk...
[2010-08-06 13:00:12 - Now] Success!
[2010-08-06 13:00:12 - Now] \Now\bin\Now.apk installed on device
[2010-08-06 13:00:12 - Now] Done!

But application is not getting loaded in emulator . Can any one tell me the reason why it is happenig...Thanks in advance...
 
Hi Manish, and welcome to the AC forums.

I've moved this to the developer forum as it's a better place for it.

I get something different. It's the same until it says "Success!". After that I see the next two lines that you see, instead I see:

Starting activity xxx.xxx.xxx on device.

So, it sounds to me like you don't have a main activity defined. In your AndroidManifest.xml you should have a section that looks a bit like this:









...this tells it to launch YourMainActivity when the app is loaded.

Also it depends how you're using the Emulator. If you're doing all this through Eclipse then it should launch your app for you.

Can you see the app on the emulator and start it manually by clicking on it?
 
Back
Top