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~
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
...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>
Copy link to clipboard
Copied
Hi,
Could not check release notes...
Thanks for your answer.