I recently changed the launch activity of my app - by moving the intent-filter (action.MAIN and category.LAUNCHER) in the manifest from the old activity to the new - and since then the new activity name rather than the application name shows in the All Applications list on my test phone (running Android version 2.3.6). In the 'Manage Applications' list it still shows the app name.
It's not a huge deal - because I can always just create a new app with the new launcher activity as default - but it would be nice have the flexibility to change the launcher activity on the fly in the same project. Basically is there something else, other than just cutting and pasting the intent-filter in the manifest, that needs to be done to change the default launcher activity? That is, assuming that's the cause of the problem.
Thanks in advance for any help.