周末把Mac电脑升级到了最新版本,Xcode也升级到14,周一到公司后准备正常写代码,发现运行项目报错:
错误一:
@available(iOS 13.0, *)
错误提示:
Stored properties cannot be marked potentially unavailable with '@available'
有2个依赖库报错,把其中一个库升级到了最新的版本,不报错了,但是还有一个库没办法升级,因为我们的项目是Flutter项目,不知道是哪个三方库的依赖库,百度了好久没找到办法,最后还是强大的Google到方法:
执行pod install
然后再执行pod update
最终可以了
参考链接
错误二:
XCode14 requires a development team. select a development team in the signing & capabilities editor
参考这个链接吧
网友评论