From ca831c7321ca0e257ba67eaf861e7487082a5bb3 Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 4 Jul 2016 07:16:33 +0200 Subject: [PATCH] Updates README with a friendly information about Xcode 8.0 beta. --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index c0242732..2e55424d 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,20 @@ end Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: +**:warning: If you want to use CocoaPods with Xcode 8.0 beta and Swift 2.3, you might need to add the following +lines to your podfile: :warning:** + +``` + 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 +``` + ``` $ pod install ```