Podfile 498 B

1234567891011121314151617181920212223
  1. use_frameworks!
  2. platform :ios, '10.0'
  3. target 'GenericModules_Example' do
  4. pod 'GenericModules', :path => '../'
  5. target 'GenericModules_Tests' do
  6. inherit! :search_paths
  7. end
  8. end
  9. post_install do |installer|
  10. installer.generated_projects.each do |project|
  11. project.targets.each do |target|
  12. target.build_configurations.each do |config|
  13. config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
  14. end
  15. end
  16. end
  17. end