Shahmir
Shahmir

Reputation: 33

Why does my Android app show all of the activities?

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?

enter link description here

Upvotes: 1

Views: 41

Answers (1)

tachyonflux
tachyonflux

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

Related Questions