google play application upload failed

前端 未结 8 718
故里飘歌
故里飘歌 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:46

    If you're using Android Studio or building with gradle, edit your gradle script (build.gradle) to change your package name and version. These values overwrite your AndroidManifest.xml file.

    For example:

     defaultConfig {
            applicationId "com.xyz.abc"
            minSdkVersion 16
            targetSdkVersion 19
            versionCode 2
            versionName "1.1"
        }
    

提交回复
热议问题