diff --git a/Example/Podfile b/Example/Podfile index dc5e02d..e24ca11 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -9,3 +9,13 @@ target 'Example_BusinessComponents' 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'] = '15.0' + end + end + end +end