我也面临着同样的问题,后来知道我的版本代码
是在我的build. gradle
文件中静态定义的。
去Android-
要从那里更改它,请检查您的build. gradle
文件,版本Code
是来自flutterVersionCode
还是静态定义?
defaultConfig {
//...
versionCode flutterVersionCode.toInteger() //See this line, is it same as mine or you have any static version Code set there which is causing the issue.
versionName flutterVersionName
}