将修改后的应用程序上传到Google Play开发者控制台时出现此错误:“您的APK版本代码需要高于1”.我之前应该使用0.9版本. 我想在我的第一个应用程序版本中使用版本1.我该如何纠正?谢
我想在我的第一个应用程序版本中使用版本1.我该如何纠正?谢谢 你可以调用它.9但你必须在清单中将它称为1.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.yourthing.here" android:versionCode="1" android:versionName="0.9" >
当您发布版本1时,将其包含在清单中:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.yourthing.here" android:versionCode="2" android:versionName="1.0" >
这应该工作.不确定100%确定命名小于0是否可以,但我认为应该是.