Reputation: 574
Whenever I Run an Android app on my phone (even when the application has not been installed before), the application is shown duplicated in the app drawer. This started happening right after I setup a Splash Screen activity, and I find it kind of annoying. One of the apps in the launcher install with the SplashScreen Activity, the other one does not. The app works without issues, but is there a way to remove this duplicate app icon in the drawer?
It's not urgent, but maybe you guys know ;) I run my Android app projects with Eclipse, if it's of any help. Any ideas? Oh, and if you guys need me to show you some of my code, please tell me. I followed this tutorial for the creation of my splash screen.
Upvotes: 2
Views: 268
Reputation: 6319
Be sure to only have this:
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
at one Activity, in your manifest.xml
Upvotes: 2