I want to have multiple launcher icons for my application. I can get this to work fine on some phones simply by adding the following to the Activity definitions

  <intent-filter>
    <action
      android:name="android.intent.action.MAIN" />
    <category
      android:name="android.intent.category.LAUNCHER" />
  </intent-filter>

Unfortunately this doesn't appear to work for HTC Sense phones - I just get the first Activity declared like this.

Anyone know how to do this for HTC Sense too?

Phil

link|improve this question

57% accept rate
feedback

1 Answer

up vote 1 down vote accepted

OK, I was just being dumb (always seems to be the case when I ask a question on stackoverflow). I uninstalled the app and re-installed it and the missing icons appeared.

Phil

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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