12345678910111213141516171819 |
- target 'ExampleCode' do
- # Comment the next line if you don't want to use dynamic frameworks
- platform :ios, '14.0'
- use_frameworks!
- # Pods for ExampleCode
- pod 'NexilisLite', :path => '../NexilisLite'
- pod 'StreamShield', :path => '../StreamShield'
- #pod 'NexilisUC', :path => '../NexilisUC'
- post_install do |installer|
- installer.pods_project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "14.0"
- end
- end
- end
- end
|