1. 程式人生 > >iOS開發之pod的版本回退

iOS開發之pod的版本回退

專案中直接使用了pod的安裝命令

sudo gem install cocoapods

結果安裝的1.2.1版本,同事都用的1.1.1版本。
跟同事的pod版本不一致,git就會一直提示到有這個修改,很煩人。

解決辦法:
檢視當前pod版本:

pod --version
//1.2.1

直接下載想要的pod版本:

sudo gem install cocoapods --version 1.1.1

刪除不想要的版本:

sudo gem uninstall cocoapods
/*Select gem to uninstall:
 1. cocoapods-1.1.1
 2. cocoapods-1.2.1
 3. All versions*/
> 2 //Successfully uninstalled cocoapods-1.2.1

再次檢視當前pod版本:

pod --version
//1.1.1

執行一次當前pod的install命令

pod install
//*Analyzing dependencies
[!] The version of CocoaPods used to generate the lockfile (1.2.1) is higher than the version of the current executable (1.1.1). Incompatibility issues may arise.
Downloading dependencies*/

執行完成之後,git的修改提示就解決了