美文网首页
简单的打包自己的代码库

简单的打包自己的代码库

作者: LeeDev | 来源:发表于2017-11-29 17:40 被阅读17次
  1. 建索引库 Spec.git 仓库. 比如 https://git.coding.net/leeDev/LeePublicSpec.git
  2. 创建.podspec 文件,比如 pod spec create LeeWeiXinOpenSDK_NoPay
├── Specs
    └── [SPEC_NAME]
        └── [VERSION]  => (这里一定要把我们的目标代码打个tag,就是version的意思)
            └── [SPEC_NAME].podspec
  1. 目标项目中 打tag 也就是podspec 中的版本version

  2. podfile 中的target 上面添加

source 'https://github.com/CocoaPods/Specs.git'        #官方仓库地址
source 'https://git.coding.net/leeDev/LeePublicSpec.git'  #私有仓库地址
  1. pod 'LeeWeiXinOpenSDK_NoPay'

  2. 如果索引文件更新了, 最好 在cd .cocoapods/文件中 删除 我们自定义的索引, 然后重新 pod udpate --no-repo-update

相关文章

网友评论

      本文标题:简单的打包自己的代码库

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