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