Ricerche recenti


Nessuna ricerca recente

Guillaume DROULEZ's Avatar

Guillaume DROULEZ

Data ingresso 30 set 2024

·

Ultima attività 30 set 2024

Seguiti

0

Follower

0

Attività totali

2

Voti

0

Abbonamento

1

PANORAMICA ATTIVITÀ

Ultima attività di Guillaume DROULEZ

Guillaume DROULEZ ha commentato,

Commento nella community 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

Visualizza commento · Data ultimo post: 30 set 2024 · Guillaume DROULEZ

0

Follower

0

Voti

0

Commenti