ERROR ITMS-90208: “Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support t

ERROR ITMS-90208: "Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."

ERROR ITMS-90208: “Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist.”

今天把Flutter更新到最新的1.22.1版本,破关斩将的解决了各种插件报错之后终于到了打包上传的地方了,结果在上传到AppStore时报错了。
在这里插入图片描述
接下来就开始解决这个问题,根据报错信息。我们是不是需要在info.plist中增加一个minimum OS Version版本呢,检查了info.plist配置中无该配置,但是加上后也没有用。

此时,我发现度娘同学这里基本没有这个问题,所以科学上网了一波,在一个问题下面找到了解决方法。

Xcode -> Runner -> Flutter -> MinimumOSVersion: 9.0
在这里插入图片描述

此处的9.0需要跟PodFile中的版本号一致。

改好之后再次编译上传,完美解决!!

猜你喜欢

转载自blog.csdn.net/tianzhilan0/article/details/109337169