-
Notifications
You must be signed in to change notification settings - Fork 16
Know Problem
https://github.com/googlesamples/unity-jar-resolver/issues/412
For quick fix, you can install "iOS Build Support" module from Unity Hub. That fixes the issue.
-
Non-secure network connections disabled in Player Settings
- at UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest.SendWebRequest()
-
InvalidOperationException: Insecure connection not allowed
- System.InvalidOperationException: Insecure connection not allowed UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest.SendWebRequest()
How to fix
Open
Project Setting
>Player
>Oher Setting
>Allow downloads over HTTP
Change value from
Not allowed
toAllowed in development builds
When you see your native popup looks like this, the reason is because the theme is specified in the AndroidManifest.xml file
You can delete it or change it to
android:theme="@style/UnityThemeSelector"
Unity's default AndroidManifest file will use android:theme="@style/UnityThemeSelector"
but in some cases it is changed by 3rd parties so please check again.
Result after change :