You need to add an icon to your APK while uploading App to google play

后端 未结 5 756
暗喜
暗喜 2020-12-06 10:57

I dont know where i am going wrong . I need to upload APK to google play and whenever i am trying to upload it , it is showing an error message as displayed in the attached

相关标签:
5条回答
  • 2020-12-06 11:50

    The same problem but in my case I was missing "android:icon" attribute in application element, note I had it only in activity.

    <application ... android:icon="@drawable/ic_launcher">
        <activity ... android:icon="@drawable/ic_launcher">
    
    0 讨论(0)
  • 2020-12-06 11:51

    After long and painful search, found that ApplicationAttributes in Manifest file was empty, inspite of mentioning android:icon="@drawable/app_icon" in AndroidManifest.xml.

    Filling up ApplicationAttributes solved my problem.

    0 讨论(0)
  • 2020-12-06 11:53

    It is likely that in your manifest that you do not have an icon defined or are referencing an image that does not exist.

    0 讨论(0)
  • 2020-12-06 11:59

    I had the same problem make sure that you don't have \n in the name of your application

    0 讨论(0)
  • 2020-12-06 11:59

    remove \n from your application name

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