Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio creates duplicate apps

When I run my project to test it, Android Studio ends up creating two of the same apps on my emulator and phone.

Why is that?

EDIT: The reason was because of the PebbleKit creating another app.

like image 379
Leon Avatar asked Feb 11 '26 21:02

Leon


1 Answers

Another possibility is that if you have multiple activities with:

<intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>

in both of their manifest files. This can create multiple icons in the app drawer.

like image 72
Lukos Avatar answered Feb 13 '26 15:02

Lukos