Running app gives 2 app icons in Android Studio

后端 未结 6 1497
挽巷
挽巷 2020-12-28 12:13

I am running an app in Android Studio and it gives 2 app icons in Androi Studio.

Also, I have moved from Eclipse to Android Studio and now I\'m having trouble with h

6条回答
  •  情歌与酒
    2020-12-28 12:33

    The that affects creating multiple launcher icon is the following one:

      
        
        
      
    

    Android Studio's manifest merger will always combine s in library projects into main project's manifest. You may end up having multiple LAUNCHER intents in your synthesized manifest, thus having multiple launcher icons. To avoid this, simply remove the LAUNCHER intents from the library projects' manifest.

提交回复
热议问题