1234567891011121314151617181920212223 |
- use_frameworks!
- platform :ios, '10.0'
- target 'GenericModules_Example' do
- pod 'GenericModules', :path => '../'
- target 'GenericModules_Tests' do
- inherit! :search_paths
-
- end
- end
- post_install do |installer|
- installer.generated_projects.each do |project|
- project.targets.each do |target|
- target.build_configurations.each do |config|
- config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
- end
- end
- end
- end
|