google play application upload failed

前端 未结 8 664
故里飘歌
故里飘歌 2020-12-19 01:12

apk upload failed to the google play market.

I am trying to upload the upgraded version of my app to the google play but I am keep getting the message -

<         


        
相关标签:
8条回答
  • 2020-12-19 01:52

    Every time you update your app change this variable in you XML file:

    android:versionCode="1"
    
    0 讨论(0)
  • 2020-12-19 01:55

    You are getting 2 errors.

    • The Version Code: you always need to set a higher number in the versionCode and always use an integer number. (don't use 1.1)

      android:versionCode="1"

    • The package name: it has to match the same string that you used in the latest version that you upload. So instead of package="com.corntail.main" you should use:

      package="com.corntail.project"

    After modify the AndroidManifest.xml save it and then search in the folder src the package called "com.corntail.main", right click, Refactor > Rename, and the new name should match what you put in package (in this example you should call it: 'com.corntail.project') and you are done!

    Good luck!

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