From a57864e2849162df6bd3899a05fa1cedac80d21e Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 4 Jul 2016 06:35:03 +0200 Subject: [PATCH] Fixes podfile. --- Podfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Podfile b/Podfile index 47a6ced8..4ba17c63 100644 --- a/Podfile +++ b/Podfile @@ -10,3 +10,13 @@ target 'Example' do pod 'RxSwift', '~> 2.4' pod 'RxCocoa', '~> 2.4' end + +post_install do |installer| + installer.pods_project.targets.each do |target| + target.build_configurations.each do |config| + config.build_settings['SWIFT_VERSION'] = '2.3' + config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10' + end + end +end +