1期_pod私有库笔记
2023-10-04 本文已影响0人
萧修
- 创建组件代码库
pod lib create XX 建pod模板
上述指令执行完毕,终端会提出几个问题,按照自己需要敲答案即可
- 本地库验证
pod lib lint --private --allow-warnings
--allow-warnings
忽略警告
- 远程库验证
pod spec lint xxx.podspec --use-libraries --allow-warnings
--use-libraries
使用了第三方库
通过上述创建代码库之后,编写工具或者项目运行代码,本地验证需要添加tag,远程验证,需要将本地代码提交远程如github、gitee等,打上标签,执行远程认证
- 代码库和索引库关联
pod repo push mxs xxx.podspec --allow-warnings
mxs是我本地的索引库,对于索引库的建立,可以自行查询,这个库主要保存代码库的地址。
我们使用repo push将podspec推送到索引库
- 使用
Podfile中会使用到
source 'https://gitee.com/gtools/mxs.git'
source 'https://github.com/CocoaPods/Specs.git'
Source 使用索引地址