I want to install specific dependency using cocoapods
. if I execute pod install
, other dependencies are getting updated before installing my newly adde
1) If you want to update single pod
pod update 'yourpodname'
2) if you want to install one pod without affecting another pod
pod install --no-repo-update
3)if you want to install/update specific version of pod
pod 'Stripe', '3.0'
4) if you want to install/update latest version of pod than
pod 'KCFloatingActionButton'