unityAndroid9.0不能下载AB包的问题

最近研究unity AB包的加载,打包成APK在手机上一直下载不起来。

UnityWebRequest报错   报错内容unknown error

偶然间使用同事的安卓8.0   TM奇迹发生了,竟然能下载下来

附上之前代码  

using (UnityWebRequest uwr = UnityWebRequestAssetBundle.GetAssetBundle("http://xxxxxxxxxxxxxxx/abnss"))
        {
            yield return uwr.SendWebRequest();
            if (uwr.isHttpError || uwr.isNetworkError)
            {
                Debug.Log(uwr.error);
            }
            else
            {
				AssetBundle bundle = (uwr.downloadHandler as DownloadHandlerAssetBundle).assetBundle;

                var prefab = bundle.LoadAsset("NSSUI");
                GameObject go = (GameObject)Instantiate(prefab);

            }

这个代码使用UnityWebRequest 方式加载AB包,电脑是可行的,安卓9.0报错,报的错误是Unknown Error。

百思不得其解

利用Android的adb log查看·······还是unknown error

谷歌一下

发现某论坛https://www.reddit.com/r/Unity3D/comments/ajmhzk/unitywebrequest_not_working_on_android/  有个人讲:

Newer versions of android don't allow http connections, only https

 

好像突然····明白了什么····果断给http加了个s

解决

全剧终

 

 

你可能感兴趣的:(unityAndroid9.0不能下载AB包的问题)