iOS中cocoapods移除三方库的Bitcode

0 阅读1分钟

cocoapods移除三方库中的Bitcode

post_install do |installer|
    bitcode_strip_path = `xcrun --find bitcode_strip`.chop!
    def strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
      framework_path = File.join(Dir.pwd, framework_relative_path)
      command = "#{bitcode_strip_path} #{framework_path} -r -o #{framework_path}"
      puts "Stripping bitcode: #{command}"
      system(command)
    end
    # 列出需要剥离Bitcode的frameworks路径
    framework_paths = [
      "Pods/Intercom/Intercom.xcframework/ios-arm64/Intercom.framework/Intercom",
    ]
    framework_paths.each do |framework_relative_path|
      strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
    end
end