Cocoapods 没有集成到 Pod 文件中
Cocoapods no integrate in Pod file
所以我有多个项目都使用 cocoapods。对于其中一个项目,我们需要使用 --no-integrate
标志,我想知道我们能否将此声明移动到 podfile 中,这样我们就不必每次进入该文件时都记住差异。
在 CocoaPods 1.0 测试版中,您可以使用:
install! 'cocoapods', :integrate_targets => false
在你的 Podfile 中。
所以我有多个项目都使用 cocoapods。对于其中一个项目,我们需要使用 --no-integrate
标志,我想知道我们能否将此声明移动到 podfile 中,这样我们就不必每次进入该文件时都记住差异。
在 CocoaPods 1.0 测试版中,您可以使用:
install! 'cocoapods', :integrate_targets => false
在你的 Podfile 中。