在我的自定义podspec文件中为Vendored框架中的Objective C添加Realm时,它给了我一个错误
- ERROR | [iOS] file patterns: The `vendored_frameworks` pattern did not match any file.
在我的podspec文件中,我有条目:
s.vendored_frameworks = "Realm.framework"
运行命令pod spec lint
答案 0 :(得分:1)
CocoaPods根本不尊重项目设置。它只是引用了Podspec文件。您将Realm.framework
目录与podspec放在一起。如果您编写s.vendored_frameworks = "Realm.framework"
,则将从当前目录解析相关的传递。
答案 1 :(得分:1)
尝试做pod cache clean --all
在我标记一个新版本并将其推送后,这奏效了。