Reputation: 13
Wondering why I'm working on one project in my Android Studio window, but when using the emulator, I see multiple applications that go to different activities. I'm trying to develop one application, not a couple that toss the user around to different applications.
I also notice that when I uninstall one application from virtual machine/emulator, all four icons disappear.
EDIT: Found an answer on a different thread: Android App activities installed as multiple icons
Upvotes: 1
Views: 672
Reputation: 247
check your manifest:
prpbably you have more than one activity with intent filter tag
<intent-filter>
<action
android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
once delete all from emulator and in your project manifest just luncher activity must have intent-filter tag
Upvotes: 1