Two icons showing when install android apk? (manifest issue?)

I have a problem where when I install my app two icons appear for the same app. I noticed this problem after I added an upgrade system to my game whereby users can purchase upgrades using coins collected in the game (I am using stream readers and writers to save the players money and stats).When I click on one of the icons the upgrade shop works fine, however when I click on the other it doesn’t save the coins that the player collects.

I think it may have something to do with the manifest but I am unsure on how to resolve this as I cant see any problems with the manifest. I have attached the manifest below, if anyone could help me resolve this I would be grateful,thank you for reading.

[33173-androidmanifestbackup.txt|33173]

hey , you have two main activity…

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

Remove this tag from any one of the activity.

Thanks.