美文网首页
私有库组件化-组件更新步骤

私有库组件化-组件更新步骤

作者: 开发我东哥 | 来源:发表于2018-07-30 16:00 被阅读0次

项目中用到pod私有库中,自定义的组件需更新的操作

  • 从Git上clone组件代码到本地
git clone http://自定义私有库url/组件名称.git
  • 更新组件代码,运行打包脚本,生成新的framework或.a

  • 修改podspec文件,更新版本号

  • 验证podspec文件

pod lib lint 组件名称.podspec --sources=https://github.com/CocoaPods/Specs.git,http://私有库url/自定义spec.git --private --verbose --no-clean --allow-warnings --use-libraries
  • git提交,打tag
git add .
git commit -m '注释'
git push

git tag 6.6.6
git push --tag
  • 提交pod私有库
pod repo push 私有库名称 组件名称.podspec --sources=https://github.com/CocoaPods/Specs.git,http://私有库url/自定义spec.git  --private --verbose --allow-warnings
  • 项目中使用
pod repo update 私有库名称

在项目中的Podfile中,更新组件版本号为新版本

pod install

相关文章

网友评论

      本文标题:私有库组件化-组件更新步骤

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