Hi! I have problem with webrequests on iOS. Xcode gives me a following error:
Here is the code i'm using for connecting to the http server
NSAllowsArbitraryLoads
Code (CSharp):
- 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.
Code (CSharp):
- public IEnumerator WaitForRequest(String query)
- {
- string URL = "http://server.com/backend?message=" + query;...