From d279267188d748e564f6593d95d5a186666057fc Mon Sep 17 00:00:00 2001 From: Franco Camilletti Date: Mon, 16 Dec 2024 15:09:32 -0300 Subject: [PATCH] Add minimum deployment target in Podfile --- Example/Podfile | 10 ++++++++++ 1 file changed, 10 insertions(+) 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