Skip to content

Instantly share code, notes, and snippets.

@lucien144
Created October 7, 2015 10:01
Show Gist options
  • Select an option

  • Save lucien144/5afc7c0308eda9f7ad64 to your computer and use it in GitHub Desktop.

Select an option

Save lucien144/5afc7c0308eda9f7ad64 to your computer and use it in GitHub Desktop.
Allow non-secure connection for Adobe AIR build under iOS9 SDK
<!--
Fixing IOError #2032 caused by ATS in iOS9 for Adobe AIR applications.
More: http://htmlspank.tumblr.com/post/130674234457/ioerror-2032-ios9-adobe-air-and-ats
//-->
<InfoAdditions>
<![CDATA[
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>yourapiurl.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
]]>
</InfoAdditions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment