1、头文件中含有C,C++文件,报错类似于error: unknown type name 'namespace'时,首先 s.libraries = "c++",其次在lint的时候加上参数 --use-libraries,本人测试存在c文件时,只需要在lint的时候加上参数 --use-libraries即可。
2、私有库之间相互添加依赖库时,使用命令式注意添加私有源依赖文件地址:
pod lib lint --sources='https://git.tticar.com/pods/Specs.git' --use-libraries --allow-warnings
--sources='https://git.tticar.com/pods/Specs.git'为所有私有库的specs文件地址,--use-libraries --allow-warnings为设置配置
网友评论