Reputation: 33
So, I made an app and now instead of just showing one thumbnail or app, it shows all of my activities! Even though, I uploaded the signed and packaged app, this is happening on other people's phones too! What should I do?
Upvotes: 1
Views: 41
Reputation: 20211
Each activity with a launcher category will be listed in the application launcher:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
Upvotes: 1