• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

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

New Here ,
Feb 07, 2016 Feb 07, 2016

Copy link to clipboard

Copied

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~

TOPICS
Performance issues

Views

529

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Feb 07, 2016 Feb 07, 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>NSTemporaryExceptionAllowsInsecureH

...

Votes

Translate

Translate
Adobe Employee ,
Feb 07, 2016 Feb 07, 2016

Copy link to clipboard

Copied

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>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 13, 2016 Feb 13, 2016

Copy link to clipboard

Copied

LATEST

Hi,

Could not check release notes...

Thanks for your answer.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines