整个组件化过程中遇到的问题及解决方案原文出处 hehuoya.com

pod install 报警告(debug、release。。)

解决方案:
other link flags : $(inherited)
删除pod,重新pod install
clean proj

 

pod中添加第三方库之后,ld错误:

解决方案:
Build archive architecture only: debug:yes
pod第三方库报错,duplicate

解决方案例如:
#import "YYImage.h" 改为 #import <YYImage/YYImage.h>

最后找不到pod工程库:

解决方案:
找不到framework错误,手动+入

 

pod更新错误或超时,解决方案:

git config http.postBuffer 524288000
git config https.postBuffer 524288000
git config --global http.postBuffer 1048576000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999