Skip to content

Know Problem

yenmoc edited this page Oct 14, 2023 · 5 revisions

Unable to resolve reference 'UnityEditor.iOS.Extensions.Xcode' on Windows

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

  • 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()

image

How to fix

Open Project Setting > Player > Oher Setting > Allow downloads over HTTP

Change value from Not allowed to Allowed in development builds

image

Theme native popup

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 :

Clone this wiki locally