简单的打包自己的代码库

2017-11-29  本文已影响17人  LeeDev
  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

上一篇下一篇

猜你喜欢

热点阅读