mouli
mouli

Reputation: 29

how to install pod without disturbing previous pods?

I am using Xcode 10.3, If I install one pod,It is installing but previous pods are updating.Tell me way to install pod without updating remaining pods.

Upvotes: 2

Views: 169

Answers (2)

Paul Beusterien
Paul Beusterien

Reputation: 29592

It should be sufficient to run pod install. Unlike pod update, it will read the Podfile.lock to keep existing Pods at the same version.

Upvotes: 0

えるまる
えるまる

Reputation: 2551

You can set exact version to old pods like pod 'IQKeyboardManagerSwift', '3.0'. You can list versions of current pods using cat Podfile.lock.

Upvotes: 1

Related Questions