制作pod library 私有库
[TOC]
iOS组件化之路——制作pod 私有库
- 创建远程仓库
- 本地创建项目 pod lib create MyTest
- 添加文件到Classes/目录下
- 在example下执行pod update / pod install,安装依赖 ,失败
- pod lib lint –allow-warnings 验证本地私有库,并忽略警告
- pod spec lint –allow-warnings 验证远端spec,并忽略警告
- pod repo push MySpec FFLocalLib.podspec –allow-warnings 私有库加入MySpec版本控制中心并提交到远端
- end
制作 pod 公共库
- pod lib create MyTest
- 添加 code
- 在 example目录下执行 pod install
- 校验 pod lib lint
- 注册设备 和邮箱 pod trunk register [email protected] ‘my name’ –description=‘my macbook air’
- 邮箱确认注册
- 提交.podspec pod trunk push MyTest.podspec
- 搜索自己的库 pod search MyTest 由于墙的原因可能不会马上可以搜到