ssl - App Transport Security in Simulator -
i trying connect http://localhost simulator debugging. since ios 9 there app transport security enabled , connections without tls 1.2 getting blocked.
is there way allow connections url in debug-builds without adding target?
you can add following property application's plist file allow connection development:
<key>nsapptransportsecurity</key> <dict> <key>nsallowsarbitraryloads</key> <true/> </dict>
i hope helps.
Comments
Post a Comment