Created
July 21, 2018 03:59
-
-
Save ThinkDigitalSoftware/d3d54f00b4164d6343a839e323e9f261 to your computer and use it in GitHub Desktop.
Allow insecure connections through HTTP. This goes in your Info.plist
This file contains hidden or 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/> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>livekingdomhall.com</key> | |
<dict> | |
<key>NSExceptionAllowsInsecureHTTPLoads</key> | |
<true/> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
</dict> | |
</dict> | |
</dict> |
Author
ThinkDigitalSoftware
commented
Jul 21, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment