Skip to content

Instantly share code, notes, and snippets.

@dmiedema
Created September 27, 2015 20:43
Show Gist options
  • Save dmiedema/98310a3e327b56514ead to your computer and use it in GitHub Desktop.
Save dmiedema/98310a3e327b56514ead to your computer and use it in GitHub Desktop.
Make Google Analytics reporting work with iOS 9 App Transport Security. (Uses custom reporting library so mileage may vary)
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>www.google-analytics.com</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment