pod package

有时候自己创建的私有库不想进行源码依赖,而是依赖 framework,此时可以使用 pod package 进行打包

1、安装 pod package

sudo gem install cocoapods-packager

2、打包命令

#!/bin/sh

pod package Common.podspec \
--force \
--no-mangle \
--exclude-deps \
--configuration=Release \
--spec-sources=http://***/specs.git
  • 命令参数说明
命令参数说明:

–force
强制覆盖之前已经生成过的二进制库

–embedded
生成静态.framework

–library
生成静态.a

–dynamic
生成动态.framework

–bundle-identifier
动态.framework是需要签名的,所以只有生成动态库的时候需要这个BundleId

–exclude-deps
不包含依赖的符号表,生成动态库的时候不能包含这个命令,动态库一定需要包含依赖的符号表。

–configuration
表示生成的库是Debug还是Release,默认是Release。
–configuration=Release

–no-mangle
表示不使用name mangling技术,pod package默认是使用这个技术的。我们能在用pod package生成二进制库的时候会看到终端有输出Mangling symbols和Building mangled framework。表示使用了这个技术。

如果你的pod库没有其他依赖的话,那么不使用这个命令也不会报错。但是如果有其他依赖,不使用–no-mangle这个命令的话,那么你在工程里使用生成的二进制库的时候就会报错:Undefined symbols for architecture x86_64。

–subspecs
如果你的pod库有subspec,那么加上这个命名表示只给某个或几个subspec生成二进制库,–subspecs=subspec1,subspec2。生成的库的名字就是你podspec的名字,如果你想生成的库的名字跟subspec的名字一样,那么就需要修改podspec的名字。
这个脚本就是批量生成subspec的二进制库,每一个subspec的库名就是podspecName+subspecName。

–spec-sources
一些依赖的source,如果你有依赖私有库,那就需要加上那个私有库的source,默认是cocoapods的Specs仓库。
–spec-sources=private,https://github.com/CocoaPods/Specs.git

常见问题:

1、Xcode12 进行编译会给模拟器添加 arm64架构,于是报如下错误:

fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: 
Pods/build/package.a and Pods/build-sim/package.a have the same architectures (arm64) and can't be in the same fat output file

解决:

找到 cocoapods-packager 如下路径:

/Library/Ruby/Gems/2.6.0/gems/cocoapods-packager-1.5.0/lib/cocoapods-packager/pod_utils.rb

找到如下代码,进行修改:

unless static_installer.nil?
  static_installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['CLANG_MODULES_AUTOLINK'] = 'NO'
      config.build_settings['GCC_GENERATE_DEBUGGING_SYMBOLS'] = 'NO'
      config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64', 'i386' // <-- inserted here
      config.build_settings['EXCLUDED_ARCHS[sdk=iphoneos*]'] = 'armv7s', 'armv7' // <-- inserted here
    end
  end
  static_installer.pods_project.save
end

2、当引入多个通过 pod package 编译的 framework,会报如下错误:

duplicate symbol _OBJC_CLASS_$_PodsDummy_Pods_packager

解决:

pod package 命令添加如下俩参数:

--no-mangle \
--exclude-deps \

参考:https://stackoverflow.com/questions/64465019/xcode-12-framework-build-failed-cocoapods-arm64

你可能感兴趣的:(pod package)