google play application upload failed

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

    If you build with gradlew, you should check the build.gradle file, the applicationId will overwrite the package value in the AndroidManifest.xml

    android {
        defaultConfig {
            applicationId "xxx.xxx.xxx"
        }
    }
    

提交回复
热议问题