My project is currently compatible with iOS8 (Swift 1.2) version. It uses the Facebook SDK. And few days ago I have got the message from it:
Action required for your iOS 9 app Update your app to use Facebook SDK for iOS v4.6 or v3.24 to support iOS 9.
Does anyone has already experience with this update? I mean what exactly do I need to do to update Facebook SDK in project. Like it says I need to:
- Download the new SDK for iOS: v4.6 or v3.24
- Update your app's plist ..
.. but do I need to replace imported Facebook SDA frameworks or if it says: "The SDK automatically loads its framework and resource dependencies." i do not need to do this?
or I just need to add this and that's it:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>facebook.com</key>
<dict>
<key>NSIncludesSubdomains</key> <true/>
<key>NSExceptionRequiresForwardSecrecy</key> <false/>
</dict>
<key>fbcdn.net</key>
<dict>
<key>NSIncludesSubdomains</key> <true/>
<key>NSExceptionRequiresForwardSecrecy</key> <false/>
</dict>
<key>akamaihd.net</key>
<dict>
<key>NSIncludesSubdomains</key> <true/>
<key>NSExceptionRequiresForwardSecrecy</key> <false/>
</dict>
</dict>
</dict>
Any advice will be appreciated.