美文网首页
上传pod库时,注意事项

上传pod库时,注意事项

作者: BierLee | 来源:发表于2017-12-26 09:00 被阅读23次

    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为设置配置

    相关文章

      网友评论

          本文标题:上传pod库时,注意事项

          本文链接:https://www.haomeiwen.com/subject/pjkdgxtx.html