一. 远程索引库
二.本地索引库
- 打开终端 pod repo 查看一下当前有哪些本地索引库(如果你之前没有创建过,应该只有一个master)
-
通过pod repo add <本地索引库的名字> <远程索引库的地址> ,创建本地索引库并和远程索引库做关联(注:本地索引库的名字建议和远程索引库起的名字一样)
-
本地索引库路径
三.远程代码库
其他默认就行
四.本地代码库
-
pod lib create <组件名> 创建本地代码组件模版库
- 编译运行通过后,提交组件到远程代码库并打tag.
- git add .
- git commit -m “xxx"
- git remote add origin 远程代码仓库地址(只需要第一次使用)
- git push origin master
- git tag 版本号 (注:这里的版本号必须和podspec里写的s.version一致)
- git push --tags
- 通过pod spec lint --verbose --allow-warnings 命令验证podspec索引文件
- 验证通过后,pod repo push <本地索引库> <索引文件名> --verbose --allow-warnings 提交索引文件到远程索引库。
-
接下来回到自己需要的工程修改podfile文件,把组件pod进来