Skip to content Skip to sidebar Skip to footer

Android App Gets Installed 3 Times When Ran Once On Android Device

When running my app on my phone it gets installed 3 times, not sure why it does this, anyone know how I can solve this? my manifest Copy

The intent filter says that the activity can be launched and it's icon with a corresponding label should be visible in the application launcher. If you press the icon in the launcher, you will start the corresponding activity. Typically, you have only one such activity in the application.

Btw: Apps on Android are distinguished by the package specified in AndroidManifest.xml file. Therefore unless you change the package, you can't install the app multiple times.

Post a Comment for "Android App Gets Installed 3 Times When Ran Once On Android Device"