Skip to main content
Participant
February 7, 2016
Answered

Adobe Air SDK 20.0.0.233 on iOS URLLoader is not working problem! -> 20.0.0.204 is working!

  • February 7, 2016
  • 1 reply
  • 643 views

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~

This topic has been closed for replies.
Correct answer Roshan Chhetri

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>

1 reply

Roshan ChhetriCorrect answer
Adobe Employee
February 7, 2016

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>

Participant
February 13, 2016

Hi,

Could not check release notes...

Thanks for your answer.