iOS ATS (Under construction)

ATS

Apple Transport Security : Apple don’t allow to use http connection basically.
Above iOS9, by default, if the app tries to connect http, this request are rejected by OS level.
This connection includes both WebView and HttpClient.

Disable ATS

<key>NSAppTransportSecurity</key>
     <dict>
         <key>NSAllowsArbitraryLoads</key>
         <true/>
     </dict>