Podfile 655 B

1234567891011121314151617181920
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. target 'XCBCTreeLangDemo' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. # Pods for XCBCTreeLangDemo
  7. pod 'XCTreeLang', :path => './Modules/XCTreeLang', :modular_headers => true
  8. pod 'XCBaseContainer', :path => './Modules/XCBaseContainer', :modular_headers => true
  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