iOS打包Framework传Cocoapods

一直使用组内早期搭好的Jenkins+pod package自动打包流程。本次手动打包回顾知识。

  • XcodeAggregate打包Framework静态库传Cocoapods.
  • Cocoapodspod package打包Framework.

一、Framework工程

1.创建Framework

2.添加文件

3.设置支持环境、Architectures、Mach-O Type

4.设置Public

到此Framework工程已创建好。


二、Aggregate打包静态库

1.创建Aggregate 添加Target生成

2.添加脚本

3.运行脚本生成Framework

4.Framework产物 (包含真机与模拟器)

生成Framework脚本

if [ "${ACTION}" = "build" ]
then
#要build的target名
target_Name=${PROJECT_NAME}
#build之后的文件夹路径
build_DIR=${SRCROOT}/build
#真机build生成的framework文件路径
DEVICE_DIR_Framework=${build_DIR}/Release-iphoneos/${PROJECT_NAME}.framework
#模拟器build生成的framework文件路径
SIMULATOR_DIR_Framework=${build_DIR}/Release-iphonesimulator/${PROJECT_NAME}.framework
#目标文件夹路径
INSTALL_DIR=${SRCROOT}/Products/${PROJECT_NAME}
#判断build文件夹是否存在,存在则删除
if [ -d "${build_DIR}" ]
then
rm -rf "${build_DIR}"
fi
#判断目标文件夹是否存在,存在则删除该文件夹
if [ -d "${INSTALL_DIR}" ]
then
rm -rf "${INSTALL_DIR}"
fi
#创建目标文件夹
mkdir -p "${INSTALL_DIR}"
#build之前clean一下
xcodebuild -target ${target_Name} clean
#真机build
xcodebuild -target ${target_Name} -configuration Release -sdk iphoneos
#模拟器build
xcodebuild -target ${target_Name} -configuration Release -sdk iphonesimulator
#复制头文件到目标文件夹
cp -R "${DEVICE_DIR_Framework}" "${INSTALL_DIR}"
#合成模拟器和真机包
lipo -create "${DEVICE_DIR_Framework}/${PROJECT_NAME}" "${SIMULATOR_DIR_Framework}/${PROJECT_NAME}" -output "${INSTALL_DIR}/${PROJECT_NAME}.framework/${PROJECT_NAME}"
#打开目标文件夹
open "${INSTALL_DIR}"

fi


运行脚本后会弹出Framework生成路径文件夹。到此静态库已生成。


三、上传Cocoapods

1.创建WxkNetKit.podspec文件

WxkKit git:(master) ✗ pod spec create WxkNetKit 
➜  WxkKit git:(master) ✗ tree -L 1
.
├── Products
├── README.md
├── WxkNetKit
├── WxkNetKit.podspec
├── WxkNetKit.xcodeproj
├── WxkNetKitTests
└── build

2.编辑spec文件

Pod::Spec.new do |spec|
  spec.name         = "WxkNetKit"
  spec.version      = "0.0.1"
  spec.summary      = "WxkNetKit."
  spec.description  = <<-DESC
  WxkNetKit
                   DESC
  spec.homepage     = "https://github.com/wangxiaoKangK/WxkNetKit"
  spec.license      = { :type => "MIT", :file => "FILE_LICENSE" }
  spec.author             = { "gitWxk" => "[email protected]" }
  spec.source       = { :git => "https://github.com/wangxiaoKangK/WxkNetKit.git", :tag => "#{spec.version}" }
  spec.platform = :ios, "9.0"
  spec.ios.deployment_target = "9.0"
  # spec.source_files  = "Classes", "Classes/**/*.{h,m}"
  # Framework
  # 我的文件路径
  #   Products
  # │   └── WxkNetKit
  # │       └── WxkNetKit.framework
  spec.vendored_frameworks = "Products/**/*.{framework}"
end

3.打tag.

➜  WxkKit git:(master) git tag 0.0.1
➜  WxkKit git:(master) git push --tags
  1. 验证spec文件
➜  WxkKit git:(master) ✗ pod spec lint WxkNetKit.podspec --allow-warnings --verbose
pod spec lint xxx.podspec --verbose 
1.--verbose:打印错误详情,当出现error的时候.
2.--use-libraries:当你的库中有framework或.a文件,就加上吧。
3.--allow-warnings:有事有警告也有可能验证不通过,可以加上这个。
  • 验证通过

5.验证成功后,推spec文件

发布:pod trunk push xxxxxx.podspec  --allow-warnings
➜  WxkKit git:(master) ✗ pod trunk push WxkNetKit.podspec --allow-warnings
  • 成功发布

到此自己的静态库已经发布到Cocoapods。


验证静态库


四、使用pod package打包Framework

正常配置好spec文件后 执行

pod peckage xxx.spec
# Overwrite existing files.
# 是否覆盖已存在的文件
--force 
# Do not mangle symbols of depedendant Pods.
--no-mangle
# Generate embedded frameworks. 
# 生成静态Framework
--embedded
# Generate static libraries.
# 生成静态Library
--library
# Generate dynamic framework. 
# 生成动态Framework
--dynamic
# Bundle identifier for dynamic framework
# 动态Framework Bundle identifier
--bundle-identifier 
# Exclude symbols from dependencies.
# 不包含依赖的符号表,动态库不能包含这个命令
--exclude-deps 
# Build the specified configuration (e.g. Debug). Defaults to Release
# 生成的库是Debug还是Release,默认是Release。--configuration=Debug 
--configuration
# Only include the given subspecs
# 只给指定的子库打包
--subspecs
# The sources to pull dependant pods from (defaults to https://github.com/CocoaPods/Specs.git)
# 存在私有依赖
--spec-sources=private,https://github.com/CocoaPods/Specs.git 

执行完会生成新文件夹,里面有WXKAAA.framework文件。

├── WXKAAA-0.0.1
│   ├── WXKAAA.podspec
│   ├── build
│   │   ├── Pods.build
│   │   │   └── Release-iphonesimulator
│   │   └── XCBuildData
│   │       ├── 45e4c79569ebe6fc185d9a8238a80c5a-desc.xcbuild
│   │       ├── 45e4c79569ebe6fc185d9a8238a80c5a-manifest.xcbuild
│   │       ├── BuildDescriptionCacheIndex-fca4d8b44dd9d4332eecf83387fccfa0
│   │       └── build.db
│   └── ios
│       └── WXKAAA.embeddedframework
│           ├── Resources
│           └── WXKAAA.framework

pod package 工具生成静态包.framework完成。

你可能感兴趣的:(iOS打包Framework传Cocoapods)