Fork me on GitHub

Flutter - You need to use a different version code for your APK or Android App Bundle because you already have one with version code 1.

前两天提交了一个版本Google Play,结果今天收到拒绝的邮件,说App内购有问题。

于是把设置里面的支付宝和微信打赏功能关闭,又打了一个aab。

然后上传到Google Play,结果提示

You need to use a different version code for your APK or Android App Bundle because you already have one with version code 1.

 

一开始尝试修改App内部的版本号,就在pubspec.yaml中。

修改为,最开始是1.0.0

version: 1.0.1

还是不行,提示同样的错误。

 

 

Google了一下,结果方法很简单,在刚才的pubspec.yaml中,

版本号加一个+1即可。因为第一次上传的Version Code是1。这个在Play Console中可以看见。

 

version: 1.0.0+2

 

然后就可以上传了。

 

 

 

 

 

StackOverflow解释

For Android:

A.B.C represents the versionName such as 1.0.0.

X (the number after the +) represents the versionCode such as 123, etc.

When you run flutter packages get after updating this version in the pubspec file, the versionName and versionCode in local.properties are updated which are later picked up in the build.gradle (app) when you build your flutter project using flutter build or flutter run which is ultimately responsible for setting the versionName and versionCode for the apk.

For iOS:

A.B.C represents the CFBundleShortVersionString such as 1.0.0.

X (the number after the +) represents the CFBundleVersion such as 123, etc.

 

参考: 

Flutter: upgrade the version code for play store

posted @   猫叔Vincent  阅读(857)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· winform 绘制太阳,地球,月球 运作规律
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
点击右上角即可分享
微信分享提示