When testing your mobile app while the API server runs locally, remember that Apple has a strict security policy and might block your connection. Luckily, there’s a way to enable it.
Today, we’d like to share a find that occured during a test of one of our iOS apps with the API server running locally. When we updated the URL in the project configuration we got an error: `Could not connect to the server`.
It turned out that Apple is very strict about connections made from the iOS app and it does not allow for unsecured connections by default.
In order to enable it, you need to open the `Info.plist` file and add:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
