可可 – 如何更新单个pod而不触及其他依赖项

前端之家收集整理的这篇文章主要介绍了可可 – 如何更新单个pod而不触及其他依赖项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我了解以下命令将更新单个pod:pod update< podname&gt ;.但是,这还会更新先前安装的其他pod(未包含在update命令中的pod)的依赖关系。有没有办法更新单个pod,单独留下所有其他依赖项?
确保您安装了最新版本的CocoaPods。 $ pod update POD最近被引入。

this issue thread for more information

$ pod update

When you run pod update SomePodName,CocoaPods will try to find an updated version of the pod SomePodName,without taking into account the version listed in Podfile.lock. It will update the pod to the latest version possible (as long as it matches the version restrictions in your Podfile).

If you run pod update without any pod name,CocoaPods will update every pod listed in your Podfile to the latest version possible.

原文链接:https://www.f2er.com/javaschema/282936.html

猜你在找的设计模式相关文章