Unable to find a specification for `xxxxx`

使用pod install --verbose --no-repo-update安装依赖库时总是出现提示Unable to find a specification for xxxxx的问题.

只需要把当前Pod的目录清理一下就行了。在终端执行以下命令:

pod repo remove master  
pod setup

在执行pod setup命令的时候可能需要一些时间,耐心等待就好。

然后在命令行下执行
pod install --verbose --no-repo-update
会将关联的库重新下载下来,然后工程就可以执行了。

你可能感兴趣的:(Unable to find a specification for `xxxxx`)