I’m trying to test my app in iPhone, but Xcode throws this error:
You are using download over http. Currently Unity adds NSAllowsArbitraryLoads to Info.plist to simplify transition, but it will be removed soon. Please consider updating to https.”
I'm using UnityWebRequest with URL "http://..." (to download a JSON file), I already added NSAllowsArbitraryLoads in true, but it doesn’t work. Is it really necessary to update to https, or are there other ways to do it if I don't have https?
The problem is that from Unity Editor it works, but it's not working from an iOS device.