`vendored_frameworks`模式与任何文件都不匹配

时间:2017-04-28 12:46:12

标签: realm

在我的自定义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

时出错

2 个答案:

答案 0 :(得分:1)

CocoaPods根本不尊重项目设置。它只是引用了Podspec文件。您将Realm.framework目录与podspec放在一起。如果您编写s.vendored_frameworks = "Realm.framework",则将从当前目录解析相关的传递。

答案 1 :(得分:1)

尝试做pod cache clean --all 在我标记一个新版本并将其推送后,这奏效了。