THE SETUP:
Developing API 16 Android app with Eclipse and installing on Tablet when testing.
THE PROBLEM:
Every time I use Eclipse to install the app and run it on the actual tablet, it creates an application icon for every single activity in the application that is visible from the main dashboard, whether it is called or not.
THE QUESTIONS:
- Why is this happening?
- How do I stop it?
- Loosely related question – I’ve seen many people looking for an easy way to make a simple installable file to put the appplication onto a tablet. I have considered using a signed application package and a third-party app installer from SD card. Are there any other suggested ways to do this.
If we have to guess, it’s because you have the
MAIN/LAUNCHER<intent-filter>on all those activities in your manifest.Only put that
<intent-filter>on the activity (or activities) that should appear in the launcher.I have no idea what you consider “a simple installable file” is.
I have no idea what you consider “a third-party app installer” to be.