美文网首页
组件化创建远程私有库笔记

组件化创建远程私有库笔记

作者: 小驴拉磨 | 来源:发表于2018-06-12 15:12 被阅读5次
    image.png

    1、创建远程私有库、远程私有Spec库
    2、创建私有库模板
    pod lib caeate 库名字
    3、将文件拖到classes文件中
    4、pod install 安装测试
    5、修改描述文件(编辑.podspec文件)
    6、本地验证Spec文件
    pod lib lint
    7、将本地库与远程库绑定
    git remote add origin <URL>
    8、打tag,
    git tag -a ’版本’ -m ‘描述’
    提交远程
    git push - -tags
    9、pod spec lint (远程验证):注意要先将修改好的Spec文件推送到远程仓库
    8、pod repo push 远程Spec库名 .podSpec文件

    相关文章

      网友评论

          本文标题:组件化创建远程私有库笔记

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