Lucius Fox wrote:
> Can someone please help me understanding why in my emulator, i can
> * in my settings-> manage application, see an entry for an application there
> * but i cant' find the icon for launching that in All Application.
>
> Can you please tell me how can I make my application launches on the emulator?
You need one or more activities with the following <intent-filter> in
their manifest:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
If you on Android 1.5, and you already have that intent filter, and you
still do not see your icon, and you may already have an application
installed that shares the same Java package (e.g.,
package="com.commonsware.android.foo" in your <manifest> element), try
removing the earlier application and re-installing the new one. You
cannot have two applications installed with the same package. In Android
1.1 and earlier, the new one would overwrite the old one -- not anymore.
--
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy
Need Android talent? Ask on HADO! http://wiki.andmob.org/hado
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---