-
Notifications
You must be signed in to change notification settings - Fork 473
Internet Permissions
Charlie Hieger edited this page Nov 19, 2015
·
8 revisions
In the info.plist file, you can use NSAllowsArbitraryLoads
to completely disable ATS in your app:
Right-Click info.plist and Open As -> Source Code. This will open the file in XML format.
- Add the following to the bottom of the info.plist xml file.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
</dict>
This is strongly discouraged. Only use this during development.