Adobe Air SDK 20.0.0.233 on iOS URLLoader is not working problem! -> 20.0.0.204 is working!
Android and PC is OK, only iOS has problem!
We can not upgrade to the air sdk 20.0.0.233
'Air sdk 21 beta' has same problem!
please help~
Android and PC is OK, only iOS has problem!
We can not upgrade to the air sdk 20.0.0.233
'Air sdk 21 beta' has same problem!
please help~
Hi,
This is because you might be using an http url in URLLoader. Please add the following exception in app.xml inside iphone infoadditions tag. Please replace example.com with your url.
We have suggested these changes in our release notes as well.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>www.example.com</key>
<dict>
<!--Include to allow subdomains-->
<key>NSIncludesSubdomains</key>
<true/>
<!--Include to allow HTTP requests-->
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<!--Include to specify minimum TLS version-->
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.