最近搜索


没有最近搜索

Guillaume DROULEZ's Avatar

Guillaume DROULEZ

已加入2024年9月30日

·

最后活动2024年9月30日

关注

0

关注者

0

活动总数

2

投票

0

订阅

1

活动概览

的最新活动 Guillaume DROULEZ

Guillaume DROULEZ 进行了评论,

社区评论 Developer - Zendesk SDKs

Hi, with cocoapods, what You can do, is adding following code to Your podfile.

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
   
   framework_paths = [
     "Pods/ZendeskSDKConfigurationsSDK/SDKConfigurations.xcframework/ios-arm64/SDKConfigurations.framework/SDKConfigurations"
   ]
   
   framework_paths.each do |framework_relative_path|
     strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
   end
   
  end

查看评论 · 已于 2024年9月30日 发布 · Guillaume DROULEZ

0

关注者

0

投票

0

评论