Android Studio creates duplicate apps

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

Why is this?

EDIT: The reason is because PebbleKit created another app.

+3


source to share


2 answers


Another possibility is that if you have multiple actions with:

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

      



in both manifest files. This can create multiple shortcuts in the application.

+4


source


check your gradle build files, it can build multiple variants or build types and deploy them for testing.



0


source







All Articles