Android, icon been duplicate when i install my app on the device

前端 未结 6 926
遥遥无期
遥遥无期 2021-01-21 19:54

I try to install the app that i develop on my device (Htc desire) and i see that the icon of the app is duplicate

what i need to change to don\'t late that happen?

6条回答
  •  生来不讨喜
    2021-01-21 20:09

    I came up this issue today, I am using Gradle.

    I found out there was a folder ./build/manifests/debug/AndroidManifest.xml was generated from gradle build, and it had duplicate intent-filter of category launcher.

    
        
        
    
    

    ...

    
        
        
    
    

    One of it was came by gradle dependencies compile project. So I went back and check dependencies project and remove it, and the problem solved.

提交回复
热议问题