"App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file."
Abrir info.plist como código fuente (click con el boton derecho del raton) y usar uno de los siguientes métodos:
Desactivacion de App Transport Security solo para el servidor al que deseas conectarte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>NSAppTransportSecurity</key><dict> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>myserver.com</key><dict> | |
<key>NSIncludesSubdomains</key><false/> | |
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> | |
<true/></dict> </dict></dict> |
Desactivacion total de App Transport Security
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSAllowsArbitraryLoads</key><true/> | |
</dict> |