Podfile 534 B

12345678910111213141516171819
  1. target 'ExampleCode' do
  2. # Comment the next line if you don't want to use dynamic frameworks
  3. platform :ios, '14.0'
  4. use_frameworks!
  5. # Pods for ExampleCode
  6. pod 'NexilisLite', :path => '../NexilisLite'
  7. pod 'StreamShield', :path => '../StreamShield'
  8. #pod 'NexilisUC', :path => '../NexilisUC'
  9. post_install do |installer|
  10. installer.pods_project.targets.each do |target|
  11. target.build_configurations.each do |config|
  12. config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "14.0"
  13. end
  14. end
  15. end
  16. end