How to install specific pod without touching other dependencies

后端 未结 9 592
小鲜肉
小鲜肉 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:41

    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'

提交回复
热议问题