Skip to content

Commit

Permalink
Add minimum deployment target in Podfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fcamilletti authored Dec 16, 2024
1 parent be20b7b commit d279267
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d279267

Please sign in to comment.