美文网首页
cocoapods 新建

cocoapods 新建

作者: guoguo_lay | 来源:发表于2016-08-19 13:43 被阅读5次

    注册trunk

    pod trunk register zhanglei@163.com 'zhanglei' --description='description'

    查看trunk

    pod trunk me

    添加维护者

    pod trunk add-owner ARAnalytics zhanglei@163.com

    1.新建私有库

    2.新建.podspecs 文件

    pod spec create filename

    3.验证.podspecs文件

    pod lib lint

    提交代码 并打上tag

    git add -A

    git commit -m "first commit for version 1.0.0"

    git push origin master

    git tag '1.0.0'

    git push --tags

    提交trunk

    pod trunk push ***.podspec

    若查不到则

    pod setup

    可以查看是否提交成功

    https://github.com/CocoaPods/Specs

    相关文章

      网友评论

          本文标题:cocoapods 新建

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