iOS 组件化之私有库制作

方案选择

私有库现在选用方案是cocoapods,通过cocoapods管理各种第三方SDK相信大家都不陌生。同样,组件化拆分出一个模块,我们也可以用类似的方式管理。有其他方案实现的欢迎留言分享

下面我们就开始说说私有库创建的过程

1创建远程代码仓库

远程代码仓库,本次我们选择GitHub。其他平台的流程类似。
1.1. 先去GitHub创建一个仓库Repositories,这个仓库就是以后我们某个组件的代码托管的地方。

1.2. 本地建个文件夹,和远程仓库关联起来。我用的sourceTree,如下图


sourceTree

也可以通过git命令

git clone 项目git地址

1.3. 通过Xcode在本地文件夹内新建个项目,这个项目就是后续的组件

2创建远程PodSpec

2.1. 在GitHub内新建个Repositories,这个是和cocoapods关联的spec。

2.2. 通过pod命令把repo添加本地私有源,oil***Spec是本地私有源的名字,后面地址是上面2.1添加的spec地址

pod repo add oil***Spec https://github.com/****Spec.git

可以通过下面命令查看本地的私有源

pod repo

3创建本地podspec

3.1. cd到1.2创建的文件夹内,通过命令

pod spec create "podspec的名字"

此时我们就会得到一个podspec文件

3.2编辑podspec,看我下面的注释

#
#  Be sure to run `pod spec lint oilModule.podspec' to ensure this is a
#  valid spec and to remove all comments including this before submitting the spec.
#
#  To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |spec|
  spec.name         = "oilModule" # 项目名称
  spec.version      = "0.0.1"# 版本号 与 你仓库的 标签号 对应
  spec.summary      = "BWM Base BWMKit." # 项目简介
  spec.description  = <<-DESC
                     0.0.1 新增大端数据生成方法
                      DESC
  #仓库的主页
  spec.homepage     = "https://github.com/***/***.git"

  # ―――  Spec License  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
  spec.license      = { :type => "MIT", :file => "FILE_LICENSE" }

  # ――― Author Metadata  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――
  spec.author             = { "wct" => "[email protected]" }# 作者信息
  spec.social_media_url   = "https://www.jianshu.com/u/aea5eb002aae"# 社交主页

  # ――― Platform Specifics ―――――――――――――――――――――――――――――――――――――――――――――――――――――――
    spec.platform     = :ios, "11.0"# 平台及支持的最低版本
  #  When using multiple platforms
    spec.ios.deployment_target = "11.0"
  # ――― Source Location ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
  #仓库地址
  spec.source       = { :git => "https://github.com/***/***.git", :tag => "#{spec.version}" }

  # ――― Source Code ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
  spec.source_files  = "oilModuleProject/oilModuleProject/**/*.{h,m,swift}"# 代码的位置
  spec.exclude_files = "Classes/Exclude"

end

按照这个格式写就行

3.3 通过Git命令把代码提交到远程仓库并打上tag

git add .
git commit -m"更新内容"
git push -u origin master
git tag '0.0.1' # tag 值要和podspec中的version一致
git push origin --tags # 推送tag到服务器上

4上传podspec文件到远程podspec仓库

4.1上传之前先校验podspec文件是否有效,cd到podspec文件目录,执行下面命令

pod lib lint oil***.podspec --allow-warnings

这一步的问题一般就两

  1. 是上面podspec文件内的spec.version值与git tag的值不对应
  2. 是文件目录spec.source_files的层级不对,这个层级看下图,下图对照你新建的工程,圈起的两个就是spec.source_files目录层级


    spec.source_files

4.2上一步验证通过,调用下面命令上传

pod repo push '第三步创建的本地源' 'podspec' --allow-warnings

这一步常见错误

Your configuration specifies to merge with the ref 'refs/heads/master' from the remote, but no such ref was fetched.
完整错误信息


报错
修改url

通过上面的路径找到config,修改url和第1步的url相同就行

查验上传的私有库

 pod search oil***

如果搜索到,说明上传成功,到此远程私有库制作就完成了。

参考

https://blog.csdn.net/callauxiliary/article/details/110680235
https://blog.csdn.net/ds1919/article/details/54377022

你可能感兴趣的:(iOS 组件化之私有库制作)