iOS制作pod私有库

一、初次创建

1.在git仓库新建2个私有仓库

一个是索引库,用于记录podspec文件:

http://gzgitlab.bndxqc.com/xxx/hrmrecruitspec.git

一个是SDK源代码库:

http://gzgitlab.bndxqc.com/xxx/hrmrecruitsdk.git

2.将索引库添加到本地

打开终端:

pod repo add HRMRecruitSpec http://gzgitlab.bndxqc.com/xxx/hrmrecruitspec.git

3.创建本地pod工程

打开终端,cd到将要存放工程文件的目录:

pod lib create HRMRecruitSDK

按提示输入选项,完成创建

4.配置podspec文件

Pod::Spec.new do |s| 

s.name             = 'HRMRecruitSDK' 

s.version          = '0.1.0' 

s.summary          = 'A short description of HRMRecruitSDK.’ 

s.description      = <<-DESC

TODO: Add long description of the pod here.                       DESC 

s.homepage         = 'http://gzgitlab.bndxqc.com/xxx/hrmrecruitsdk' 

s.license          = { :type => 'MIT', :file => 'LICENSE' } 

s.author           = { 'xxx' => '[email protected]' } 

s.source           = { :git => 'http://gzgitlab.bndxqc.com/xxx/hrmrecruitsdk.git', :tag => s.version.to_s } 

s.ios.deployment_target = '10.0' 


# 资源包名称(可自定义)+ 路径 

s.resource_bundles = {    'HRMRecruitSDK' => ['HRMRecruitSDK/Assets/**/*.png']  } 


# 将公开的文件 

s.source_files = 'HRMRecruitSDK/Classes/**/*' 


# 依赖SDK 

s.dependency 'HRMCommonSDK' 

s.dependency 'BndCustomer' 

s.dependency 'FULIIDCard' 


#指定Pod为静态库模式 

s.static_framework = true

end

5.添加源码和资源文件

将源码文件放入Classes文件夹中(按实际,调整podspec中的s.source_files)

将图片文件放入Assets文件夹中(按实际,调整podspec中的s.resource_bundles)

6.上传本地pod库到远端仓库

将在git创建的源码库克隆到本地:

http://gzgitlab.bndxqc.com/xxx/hrmrecruitsdk.git

将前面生成的SDK工程文件,拖进克隆下来的文件夹

编译确保代码无误,提交更新,push到远端仓库

7.验证podspec

cd到SDK工程包含podspec文件的目录下

pod lib lint --sources=http://gzgitlab.bndxqc.com/xxx/HRMCommonSpec.git,https://github.com/CocoaPods/Specs.git --use-libraries --allow-warnings --no-clean —verbose

结果为HRMRecruitSDK passed validation.则验证成功

8.添加标签

打开提交历史,找到最新的一次提交,右键-标签-添加标签

填入0.1.0(与podspec文件中s.version保持一致),勾选推送标签

9.验证成功后上传本地索引库

pod repo push HRMRecruitSpec HRMRecruitSDK.podspec --allow-warnings --verbose --use-libraries

二、协作者维护SDK

1.SDK仓库克隆到本地

http://gzgitlab.bndxqc.com/xxx/hrmrecruitsdk.git

2.将索引库添加到本地

打开终端:

pod repo add HRMRecruitSpec http://gzgitlab.bndxqc.com/xxx/hrmrecruitspec.git

三、更新SDK版本

1.修改代码后,更新版本号

编译通过,确保代码无误

在podspec文件中将s.version修改为0.1.1(按实际递增)

2.验证podspec

cd到SDK工程包含podspec文件的目录下,依赖到的source都要写上,逗号隔开

pod lib lint --sources=http://gzgitlab.bndxqc.com/xxx/HRMCommonSpec.git,https://github.com/CocoaPods/Specs.git --use-libraries --allow-warnings --no-clean --verbose

结果为HRMRecruitSDK passed validation.则验证成功

3.将改动的代码提交到远端仓库

提交更新,push到远端仓库

4.添加标签

打开提交历史,找到最新的一次提交,右键-标签-添加标签

填入0.1.1(与podspec文件中s.version保持一致),勾选推送标签

5.更新本地索引库

pod repo push HRMRecruitSpec HRMRecruitSDK.podspec --allow-warnings --verbose --use-libraries

四、使用SDK

1.配置source

打开要使用SDK的项目,找到Podfile文件,添加SDK所需的source:

Github公共source + SDK本身source + SDK依赖库的source

source 'https://github.com/CocoaPods/Specs.git'

source 'http://gzgitlab.bndxqc.com/xxx/hrmrecruitspec.git'

source 'http://gzgitlab.bndxqc.com/xxx/HRMCommonSpec.git'

source 'http://gzgitlab.bndxqc.com/bonade-ios-com/slspecs'

2.引用SDK

1)若是使用远端SDK,在Podfile文件中添加

pod 'HRMRecruitSDK'

2)若是使用本地SDK,在Podfile文件中添加(path为本地SDK源码的路径)

pod 'HRMRecruitSDK',:path=>"/Users/xxx/Documents/工作文件/HRMRecruitSDK/"

3.安装SDK

cd到包含Podfile文件的目录下

pod install

如果包含本地不曾安装的库,或需要更新本地库,则使用 

pod install --repo-update

你可能感兴趣的:(iOS制作pod私有库)