• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Running an android application

krishna.c

Newbie
Hello,

I've created a project named HessianExampleDroid; its application name being HessianDroidApp. I didn't need any activity, so I did not select that option. When I run it as an android application, the console shows the following:

No Launcher activity found!
[2011-04-14 18:12:06 - HessianExampleDroid] The launch will only sync the application package on the device!
Uploading HessianExampleDroid.apk onto device 'emulator-5554'
[2011-04-14 18:01:39 - HessianExampleDroid] Installing HessianExampleDroid.apk...
[2011-04-14 18:02:05 - HessianExampleDroid] Success!
[2011-04-14 18:02:05 - HessianExampleDroid] \HessianExampleDroid\bin\HessianExampleDroid.apk installed on device
[2011-04-14 18:02:05 - HessianExampleDroid] Done!


Problem: I don't see the HessianDroidApp as an icon on the Emulator.


Regards,
Krishna.
 
When you don't setup an activity when creating the project, no main activity is added to the manifest - meaning that no launcher or icon is set either. So you need to tell Android which icon to use and what to do with it.
Read up on the Manifest on developer.android.com...
 
Back
Top Bottom