Skip to content

iOS 9 support

nook edited this page Aug 22, 2016 · 1 revision

Building Against iOS 9

Apple introduced ATS as part of the iOS SDK 9. This requires all apps to use SSL for network calls. The current SDK version still works via HTTP and we must have our customers manually disable ATS to have ads displayed. Update your Info.plist with the following:

    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>

Clone this wiki locally