I am using Xcode 9.4 , Swift 4.1 . I recently updated my pod file by mistake and it update all frameworks in it which is causing errors. I want to revert some frameworks back to their previous versions. Removing and reinstalling them is installing their latest versions. How can I force to install previous version? Any help will be appreciated. Thanks!
Asked
Active
Viewed 83 times
0
-
1Specify the required version in your pod file. – Paulw11 Oct 10 '18 at 22:46
-
My pod was earlier simply 'mypod'. Which later changed to 2.x.1 and nowchanged to 2.x.y, so when i simply install mypod it automatically installs 2.x.2 – Ravi Oct 10 '18 at 23:02
-
@shravani As Paulw11 said, specify the pod version you want to use: `pod 'mypod', '2.0.0'` – Tamás Sengel Oct 10 '18 at 23:09