Skip to content

Instantly share code, notes, and snippets.

@alokc83
Created March 28, 2016 03:04
Show Gist options
  • Save alokc83/40fb13811aad12ffd735 to your computer and use it in GitHub Desktop.
Save alokc83/40fb13811aad12ffd735 to your computer and use it in GitHub Desktop.
fix for tansport security
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>raywenderlich.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment