How to install specific pod without touching other dependencies

后端 未结 9 594
小鲜肉
小鲜肉 2021-02-01 02:56

I want to install specific dependency using cocoapods. if I execute pod install, other dependencies are getting updated before installing my newly adde

相关标签:
9条回答
  • 2021-02-01 03:52

    At the time of writing, pod install will only install pods in the PodFile that haven't already been installed. The others will not be updated. This issue appears to have been solved by the CocoaPods project.

    0 讨论(0)
  • 2021-02-01 03:52
    pod repo update && pod update 'YOURPOD'
    
    0 讨论(0)
  • 2021-02-01 03:58

    To install a plugin without updating existing ones-> Add that plugin in your Podfile and use:

    pod install --no-repo-update

    To remove/update a specific plugin use:

    pod update POD_NAME

    Tested!

    0 讨论(0)
提交回复
热议问题