From 0e532c040432ef81b4b68f16622de20279be7bc5 Mon Sep 17 00:00:00 2001 From: Victor Ragojos Date: Mon, 21 Sep 2020 23:56:10 -0700 Subject: [PATCH] MOD: fix Podfile warning - [ref](https://github.com/CocoaPods/CocoaPods/issues/7314#issuecomment-355905199) --- Podfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Podfile b/Podfile index eea1378..067c1ee 100644 --- a/Podfile +++ b/Podfile @@ -21,3 +21,11 @@ target 'Swift Watch' do end end + +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + end + end +end