Skip to content

Commit ca831c7

Browse files
committed
Updates README with a friendly information about Xcode 8.0 beta.
1 parent 56e09ab commit ca831c7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,20 @@ end
138138

139139
Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type:
140140

141+
**:warning: If you want to use CocoaPods with Xcode 8.0 beta and Swift 2.3, you might need to add the following
142+
lines to your podfile: :warning:**
143+
144+
```
145+
post_install do |installer|
146+
installer.pods_project.targets.each do |target|
147+
target.build_configurations.each do |config|
148+
config.build_settings['SWIFT_VERSION'] = '2.3'
149+
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
150+
end
151+
end
152+
end
153+
```
154+
141155
```
142156
$ pod install
143157
```

0 commit comments

Comments
 (0)