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