2 app icons after installing the release apk,using gradle build

后端 未结 1 451
别那么骄傲
别那么骄傲 2021-02-05 21:21

I am using ./gradlew assembleRelease command to generate release apk for the app.On installing the app I am getting 2 icons of app.No clue what am I missing.No luch

相关标签:
1条回答
  • 2021-02-05 21:30

    My top guess is that there is more than one LAUNCHER activity, and that one of them is declared in a library project. Eclipse didn't merge the manifests, but Gradle does.

    So, I would suggest you search for android.intent.action.MAIN in all AndroidManifest.xml files.

    0 讨论(0)
提交回复
热议问题