0

I want to upload a draft of an APK to test In-App Billing that I am trying to implement. I see here that I am supposed to leave the android:versionCode="" the same in order to upload my APK as a draft so that is what I did. Now when I upload the new signed APK I get this error:

You need to use a different version code for your APK because you already have one with version code 3.

Did this process change with the new Beta and Alpha releases update in the Dev Console?

4

1 回答 1

1

您需要使用相同的 versionCode(使用相同的证书签名):

  • 上传版本为 Y
  • 带有版本 Y 的本地版本

当您上传新版本时,您总是需要增加版本代码,这就是您遇到此错误的原因。

所以你应该将versionCode增加到4,将新版本作为草稿上传到google play并在你的设备上测试!

顺便说一句,谷歌处理你的APK需要一段时间,你上传它可能还没有准备好!

于 2013-05-20T14:04:28.770 回答