I want to install specific dependency using cocoapods
. if I execute pod install
, other dependencies are getting updated before installing my newly adde
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.
pod repo update && pod update 'YOURPOD'
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!