We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In the info.plist file, you can use NSAllowsArbitraryLoads to completely disable ATS in your app:
NSAllowsArbitraryLoads
Right-Click info.plist and Open As -> Source Code. This will open the file in XML format.
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key><true/> </dict>
This is strongly discouraged. Only use this during development.
Working with Apple's App Transport Security
8ballking