私有库遇到的问题

第1个:


编译错误
编译错误解决(此处改为1)

第2个:
安装的私有库依赖于内网和外网的其他第三方库,那么可以先install外网的第三方库,然后在install内网的第三方库。在Podfile里面,分别列出需要pod的内外网第三方库。先连接外网,注释内网的私有库,pod install。然后取消注释,pod install全部第三方库即可。

第3个:
需要依赖的第三方库,在prefix文件里面import,将prefix文件也放进classes文件夹,然后设置.podspec文件,s.prefix_header_file = 'XXX/Classes/XXX-Prefix.h',执行pod install。

第4个:


某个库不支持bitcode

第5个:
pod install报错:Specs satisfying the XXXXXX dependency were found, but they required a higher minimum deployment target.
这个问题是由于需要安装的私有库podspec文件里面的s.ios.deployment_target系统版本要求高于当前项目中podfile里面设置的版本platform :ios, 'x.x'。

你可能感兴趣的:(私有库遇到的问题)