Flutter oc项目中添加swift插件库报错问题
程序员文章站
2022-06-01 17:54:16
...
一、前言
最近公司的Flutter项目中引入了一个三方插件,android上是运行正常的,但是iOS端插件是swift版本的,导致运行失败,这里记录下解决方案。
二、问题解决
1、报错信息
`xxxxx` does not specify a Swift version and none of the targets (`Runner`) integrating it have the `SWIFT_VERSION` attribute set. Please contact the author or set the `SWIFT_VERSION` attribute in at least one of the targets that integrate this pod.
解决方法:
这个错误提示是让联系作者增加SWIFT_VERSION,一般是有的,可能是因为项目中没有增加SWIFT_VERSION版本,所以我们在项目中增加SWIFT_VERSION版本号,添加的时候在下图中User-Defined中点击圆圈+添加,版本号设置和插件相同,如果存在,更改下版本号。然后pod install,运行项目
2、继续报错
接着运行项目, 继续报错,说文件找不到
fatal error: 'xxxx/xxxx-Swift.h' file not found
解决方法
在Podfile文件中添加 use_frameworks!
pod install 运行,成功!!!
参考链接:http://www.freesion.com/article/3401520/