After installing the .apk , the App Icon appears twice

Hi ,

Currently I am on a small project . But now I have come across a wired problem . That is after building my game , after installing it on a real android device , the app icon appears twice . But when I uninstall any one of them , Suddenly other one disappears .

I have used AdMob for ads in my game . I followed this YouTube tutorial .

I believe this is related to Android manifest file . There are some same questions on Unity Answers , but neither of those properly explains how to solve this .

Here is My one AndroidManifest.xml file from D:\Folder\Folder\My Project Name\Assets\Plugins\Android\GoogleMobileAdsPlugin . Here is the link :- AndroidManifest.xml - Pastebin.com

And my another AndroidManifest.xml is in D:\Folder\Folder\My Project Name\Assets\Plugins\Android\google-play-services_lib . Here is the link :- AndroidManifest1.xml - Pastebin.com

So what is wrong with those files or something else ?

I hope you will help me to figure it out :slight_smile:

As far as I know, there are two situations where you can have multiple icons appear.

  1. You have installed two versions of your game with different bundle IDs. If you’ve changed your bundle ID between installs, the OS will think they are two separate apps rather than overwriting the first one.

  2. In your Android manifest, you’ve listed two activities with the LAUNCHER property. You should only ever have one activity in the manifest for the Launcher. If you aren’t doing any customization to your manifest, Unity should create a safe one automatically.