美文网首页
Carthage的使用

Carthage的使用

作者: 学无止境吧 | 来源:发表于2018-09-19 14:25 被阅读11次
    brew update
    brew install carthage
    
    cd projectdir
    touch Cartfile
    vim Cartfile
    

    文件内容:

    git "https://gitee.com/xxx/xxx.git"
    
    Carthage update
    

    git 项目,是framework项目,首先schema manager 里面设置shared

    然后打一个tag,比如

    git tag 1.0.0
    git push --tags
    

    在项目下执行 以下命令验证一下是否可行

    carthage build --no-skip-current
    

    相关文章

      网友评论

          本文标题:Carthage的使用

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