问题描述
我正在尝试发布我的 Android 应用程序的新版本.我可以上传 APK 文件,但在单击查看"按钮后,出现以下错误.
I am trying to release a new version of my Android App.I can upload the APK file but after I click the "Review" Button I am getting below error.
审核摘要错误
在开始发布此版本之前解决这些错误.您无法发布此版本,因为它不允许任何现有用户升级到新添加的 APK.
请注意,此应用程序是使用 CORDOVA 开发的
应用版本详情如下图.与之前和新版本的唯一区别是Target SDK从24更改为26
有人可以提供一些想法来解决这个问题.感谢您的帮助
Can someone please give some idea to fix this issue. Thanks for your help
推荐答案
我联系了 Google 支持,他们在 24 小时内回复了.
I contacted the Google support and they replied within 24 hours.
问题是 AndroidManifest.xml
中的 android:versionCode
低于我之前的版本.解决问题后,我可以毫无问题地发布我的应用.
The issue is the android:versionCode
in the AndroidManifest.xml
is lower than my previous release. After I fixed the issue I was able to release my app without any issue.
我在 config.xml
文件中的 <manifest
标记中将 android-versionCode
更改为更高的值,因此 AndroidManifest.xml
具有更高的值.
I changed the android-versionCode
to a higher value in <manifest
tag in the config.xml
file so AndroidManifest.xml
has the higher value.
感谢您联系 Google Play 开发者支持.
Thanks for contacting Google Play Developer Support.
您看到该错误消息是因为您的新 APK 的版本代码低于之前的 APK.较新的 APK 必须始终具有比先前版本更高的版本代码,否则 Play 商店不会知道新 APK 是更新.请将您的新 APK 的版本代码至少更改为 206020.
You're seeing that error message because your new APK has a lower version code than the previous APK. Newer APKs must always have a higher version code than the previous version, or the Play Store won't know that the new APK is an update. Please change your new APK's version code to be at least 206020.
问候,
Google Play 开发者支持
Google Play Developer Support
这篇关于Google Play 商店发布问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!