[!] CocoaPods could not find compatible versions for pod "xxx":
In Podfile:
xxx (from `https://github.com/xxx/xxx.git`)
Specs satisfying the `xxx (from `https://github.com/xxx/xxx.git`)` dependency were found, but they required a higher minimum deployment target
我的开源库的xxx.podspec文件中关于deployment target的配置写的是10.0, s.ios.deployment_target = '10.0',
而我的项目的podfile中的platform是默认的9.0,platform :ios, '9.0'
当podfile中支持的iOS版本低于开源库指定的版本时,就安装不成功了。
解决办法有两个:
如果这个库是你自己写的,可以改下podspec文件,把系统版本写小一点儿,比如8.0。
直接把自己项目的podfile中的版本改成10.0,同开源库要求的最低系统版本一致,就可以了。
我把podfile中的版本改成10.0,安装成功了