iOS 10 not working with adobe AIR sdk
Hello,
I am using flash builder 4.6. We created an iPad app that loads the login screen but fails to make any http request for iOS10. Same code works for any previous version of iPad but not in iOS 10. I am using AIR SDK 24.
Basically app loads in ios10, but when I make any http call it fails. In HTTPService and it always goes to fault event where it says http request fails. Below is a sample code.
var params:Object = new Object();
params['username'] = username;
params['password'] = password;
httpObj = new HTTPService();
httpObj.method = "POST";
httpObj.url = loginurl;
httpObj.addEventListener("result",handleResult);
httpObj.addEventListener("fault", handleFault);
httpObj.send(params);
In handlefault I am just printing event.fault.faultString value.
