Playing video from asset bundles on Android

I’m trying to play videos on Android from an asset bundle in 2019.1.14f1. The code works in the Editor, but not on the Android device. When debugging, I get no errors. It appears that the bundle is successfully loaded, along with the video, and the video clip is assigned and played, but I don’t visually see the video playing in the Android app… Maybe it has something to do with StreamingAssets not being accessible?

Maybe line 120 is the wrong way to load the asset?:

videoClip = videosAssetBundle.LoadAsset<VideoClip>(videoNames[index]);

Anybody have any ideas?

I generate my asset bundle like so:

using UnityEditor;
using System.IO;

public class CreateAssetBundles
{
    [MenuItem("Assets/Build AssetBundles")]
    static void BuildAllAssetBundles()
    {
        string dirForAndroidAssetBundles = "Assets/StreamingAssets";

        if (!Directory.Exists(dirForAndroidAssetBundles))
        {
            Directory.CreateDirectory(dirForAndroidAssetBundles);
        }

        BuildPipeline.BuildAssetBundles(dirForAndroidAssetBundles, BuildAssetBundleOptions.UncompressedAssetBundle, BuildTarget.Android);
     
    }
}

And I load the asset bundle and playback the video like so:

using System.Collections;
using UnityEngine;
using UnityEngine.Video;
using System.IO;
using UnityEngine.Networking;

public class VideoService : MonoBehaviour
{
    //Video Player
    [SerializeField] private VideoPlayer videoPlayerPrefab = default;
    public VideoPlayer VideoPlayer { get; private set; }
    public delegate void VideoPlayerInstantiated();
    public event VideoPlayerInstantiated OnVideoPlayerInstantiated;
    private VideoClip videoClip;

    //Videos
    AssetBundle videosAssetBundle;
    private string[] videoNames;
    public delegate void VideoAssetBundleLoadedEvent();
    public event VideoAssetBundleLoadedEvent OnVideoAssetBundleLoaded;
    public delegate void VideoLoadedEvent();
    public event VideoLoadedEvent OnVideoLoaded;

    Coroutine loadVideosAssetBundleCoroutine;
 
    //Thumbnails
    AssetBundle thumbnailsAssetBundle;
    private string[] thumbnailNames;
    Coroutine loadThumbnailsAssetBundleCoroutine;

    private void Start()
    {
        if (VideoPlayer == null)
        {
            Debug.Log("VideoService: Instantiating video player.");
            VideoPlayer = Instantiate(videoPlayerPrefab, Vector3.zero, Quaternion.identity);
            VideoPlayer.targetTexture.DiscardContents();
            OnVideoPlayerInstantiated?.Invoke();
        }

        loadVideosAssetBundleCoroutine = StartCoroutine(LoadAssetBundle("videos"));
    }

    IEnumerator LoadAssetBundle(string assetBundleName)
    {
        //Web Request
        string path = Path.Combine(Application.streamingAssetsPath, assetBundleName);

        Debug.Log("Attempting a UnityWebRequest for asset bundle: " + assetBundleName + ", at path: " + path);
        UnityWebRequest request = UnityWebRequestAssetBundle.GetAssetBundle(path);
        yield return request.SendWebRequest();

        if (!string.IsNullOrEmpty(request.error))
        {
            Debug.LogError(request.error);
            yield break;
        }

        //Download Handler
        AssetBundle assetBundle = DownloadHandlerAssetBundle.GetContent(request);
     
        if(assetBundle == null)
        {
            Debug.LogError("Asset Bundle: " + assetBundleName + " is null.");
            yield break;
        }
        else
        {
            Debug.Log("Successfully loaded Asset Bundle: " + assetBundleName);
        }

        Debug.Log("switch statement for assent bundle: " + assetBundleName);
     
        switch (assetBundleName)
        {
            case "videos":
                Debug.Log("case: videos");
                videosAssetBundle = assetBundle;
                GetAssetNames(videosAssetBundle, out videoNames);
                OnVideoAssetBundleLoaded?.Invoke();
                break;
            case "thumbnails":
                Debug.Log("case: thumbnails");
                thumbnailsAssetBundle = assetBundle;
                GetAssetNames(thumbnailsAssetBundle, out thumbnailNames);
                break;
            default:
                break;
        }
    }

    private void GetAssetNames(AssetBundle assetBundle, out string[] namesArray)
    {
        namesArray = assetBundle.GetAllAssetNames();

        if (namesArray.Length > 0)
        {
            Debug.Log("Got the following " + namesArray.Length + " names from asset bundle: " + assetBundle.name);

            foreach (string name in namesArray)
            {
                Debug.Log("- " + name);
            }
        }
    }

    public IEnumerator LoadVideo(int index)
    {
        Debug.Log("LoadVideo called...");

        if (videosAssetBundle == null)
        {
            Debug.LogError(videosAssetBundle + " is null. Failed to load video: " + videoNames[index]);
            yield break;
        }
        else
        {         
            Debug.Log("Attempting to load video: " + videoNames[index] + " from asset bundle: " + videosAssetBundle.name);
            videoClip = videosAssetBundle.LoadAsset<VideoClip>(videoNames[index]);
             
            if(videoClip == null)
            {
                Debug.LogError("videoClip is null.");
                yield break;
            }
            else
            {
                Debug.Log("Successfully loaded video clip: " + videoClip);
                OnVideoLoaded?.Invoke();
            }

            yield return null;
        }
    }

    public void PlayVideo()
    {
        if (VideoPlayer == null)
        {
            Debug.LogError("VideoPlayer is null.");
        }
        else
        {
            if (videoClip == null)
            {
                Debug.LogError("videoClip is null.");
                return;
            }
            else
            {
                if(VideoPlayer.clip != videoClip)
                {
                    VideoPlayer.clip = videoClip;
                }
             
                Debug.Log("Playing video clip: " + videoClip);
                VideoPlayer.Play();
            }
        }
    }

    public void PauseVideo()
    {
        if (VideoPlayer == null)
        {
            Debug.LogError("VideoPlayer is null.");
        }
        else
        {
            VideoPlayer.Pause();
        }
    }

    private void OnDisable()
    {
        if (loadVideosAssetBundleCoroutine != null)
        {
            StopCoroutine(loadVideosAssetBundleCoroutine);
            loadVideosAssetBundleCoroutine = null;
        }

        if (loadThumbnailsAssetBundleCoroutine != null)
        {
            StopCoroutine(loadThumbnailsAssetBundleCoroutine);
            loadThumbnailsAssetBundleCoroutine = null;
        }
    }

    private void OnApplicationPause(bool pause)
    {
     
    }

    private void OnApplicationQuit()
    {
        VideoPlayer.targetTexture?.DiscardContents();
        VideoPlayer.targetTexture?.Release();

        videosAssetBundle?.Unload(false);
        thumbnailsAssetBundle?.Unload(false);
    }
}

Just captured the logcat:

Line 1391 looks like some sort of error:

10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia::OpenExtractor could not translate archive:/CAB-065dd18caae01e46bb402481ee5f38e2/CAB-065dd18caae01e46bb402481ee5f38e2.resource to local file. Make sure file exists, is on disk (not in memory) and not compressed.
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
10-06 19:05:26.867  8288  8337 W Unity   :

FULL LOGCAT:

Microsoft Windows [Version 10.0.17763.775]
(c) 2018 Microsoft Corporation. All rights reserved.

C:\Users\Brad>adb logcat | findstr -i unity
10-06 17:10:13.929  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:10:14.192  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:10:14.194  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:10:47.029  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:10:47.406  3070  3070 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.qti.snapdragon.sdk.display.ColorManager.connect:383 com.picovr.vrsettingslib.UnityActivity.onCreate:193 android.app.Activity.performCreate:7033
10-06 17:10:47.413  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:10:47.413  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:10:49.210  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.unity3d.player.UnityPlayer.nativeRender:-2 com.unity3d.player.UnityPlayer.c:0 com.unity3d.player.UnityPlayer$c$1.handleMessage:151
10-06 17:10:49.546  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.picovr.picovrlib.hummingbirdclient.HbClientActivity.bindHbService:24 com.picovr.picovrlib.hummingbirdclient.UnityClient.bindService:69 com.unity3d.player.UnityPlayer.nativeRender:-2
10-06 17:10:50.135  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.pvr.handle.upgrade.UpgradeManager.bindUpgradeService:42 com.picovr.vrsettingslib.FunctionController.d:9 com.picovr.vrsettingslib.UnityActivity.bindUpgradeService:2
10-06 17:10:50.202  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.pvr.handle.upgrade.UpgradeManager.bindUpgradeService:42 com.picovr.vrsettingslib.FunctionController.d:9 com.picovr.vrsettingslib.UnityActivity.bindUpgradeService:2
10-06 17:11:28.983  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=84378, downTime=84378, deviceId=-1, source=0x101 }
10-06 17:11:28.983  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=84378, downTime=84378, deviceId=-1, source=0x101 }
10-06 17:11:39.249  3070  3070 W ViewRootImpl[UnityActivity]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=94648, downTime=94648, deviceId=-1, source=0x101 }
10-06 17:11:39.252  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=94654, downTime=94654, deviceId=-1, source=0x101 }
10-06 17:11:39.253  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=94654, downTime=94654, deviceId=-1, source=0x101 }
10-06 17:11:41.283  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:11:41.287  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:12:07.492  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.pvr.version.library.VersionManager.bindVersionService:45 com.picovr.vrsettingslib.UnityActivity.bindVersionService:17 com.unity3d.player.UnityPlayer.nativeRender:-2
10-06 17:12:25.462  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=517.0, y[0]=464.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=140861, downTime=140861, deviceId=0, source=0x1002 }
10-06 17:12:25.462  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=517.0, y[0]=464.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=140861, downTime=140861, deviceId=0, source=0x1002 }
10-06 17:15:32.259  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:15:32.262  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:15:32.294  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=1001, scanCode=28, metaState=0, flags=0x28, repeatCount=0, eventTime=327580, downTime=327440, deviceId=6, source=0x101 }
10-06 17:15:32.294  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=1001, scanCode=28, metaState=0, flags=0x28, repeatCount=0, eventTime=327580, downTime=327440, deviceId=6, source=0x101 }
10-06 17:15:34.500  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:15:34.505  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:15:41.083  2643  3518 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.unity3d.player.UnityPlayer.nativeRender:-2 com.unity3d.player.UnityPlayer.c:0 com.unity3d.player.UnityPlayer$c$1.handleMessage:151
10-06 17:15:41.369  2643  3518 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.picovr.picovrlib.hummingbirdclient.HbClientActivity.bindHbService:24 com.picovr.picovrlib.hummingbirdclient.UnityClient.bindService:69 com.unity3d.player.UnityPlayer.nativeRender:-2
10-06 17:15:52.766  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:15:52.770  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:16:02.646  3639  3704 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.unity3d.player.UnityPlayer.nativeRender:-2 com.unity3d.player.UnityPlayer.c:0 com.unity3d.player.UnityPlayer$c$1.handleMessage:151
10-06 17:16:02.896  3639  3704 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.picovr.picovrlib.hummingbirdclient.HbClientActivity.bindHbService:24 com.picovr.picovrlib.hummingbirdclient.UnityClient.bindService:69 com.unity3d.player.UnityPlayer.nativeRender:-2
10-06 17:16:10.541  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:16:10.545  2241  2241 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:16:18.433  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:16:18.436  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:16:46.119  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.pvr.handle.upgrade.UpgradeManager.bindUpgradeService:42 com.picovr.vrsettingslib.FunctionController.d:9 com.picovr.vrsettingslib.UnityActivity.bindUpgradeService:2
10-06 17:17:07.579  3870  3938 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.unity3d.player.UnityPlayer.nativeRender:-2 com.unity3d.player.UnityPlayer.c:0 com.unity3d.player.UnityPlayer$c$1.handleMessage:151
10-06 17:17:07.844  3870  3938 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.picovr.picovrlib.hummingbirdclient.HbClientActivity.bindHbService:24 com.picovr.picovrlib.hummingbirdclient.UnityClient.bindService:69 com.unity3d.player.UnityPlayer.nativeRender:-2
10-06 17:17:11.789  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:17:11.792  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:17:17.681  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:17:17.684  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:17:17.718  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=1001, scanCode=28, metaState=0, flags=0x28, repeatCount=0, eventTime=432990, downTime=432830, deviceId=6, source=0x101 }
10-06 17:17:17.718  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=1001, scanCode=28, metaState=0, flags=0x28, repeatCount=0, eventTime=432990, downTime=432830, deviceId=6, source=0x101 }
10-06 17:17:46.103  3070  3096 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1556 android.content.ContextWrapper.bindService:684 com.pvr.handle.upgrade.UpgradeManager.bindUpgradeService:42 com.picovr.vrsettingslib.FunctionController.d:9 com.picovr.vrsettingslib.UnityActivity.bindUpgradeService:2
10-06 17:18:11.228  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:18:11.230  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:18:21.742  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=552.0, y[0]=666.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=497143, downTime=497143, deviceId=0, source=0x1002 }
10-06 17:18:21.742  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=552.0, y[0]=666.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=497143, downTime=497143, deviceId=0, source=0x1002 }
10-06 17:20:36.633  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:20:36.789  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:20:37.437  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:20:37.439  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:20:47.451  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=642843, downTime=642843, deviceId=-1, source=0x101 }
10-06 17:20:47.452  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=642843, downTime=642843, deviceId=-1, source=0x101 }
10-06 17:20:47.454  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=642845, downTime=642845, deviceId=-1, source=0x101 }
10-06 17:20:47.456  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=642845, downTime=642845, deviceId=-1, source=0x101 }
10-06 17:20:57.071  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=652470, downTime=652470, deviceId=-1, source=0x101 }
10-06 17:20:57.076  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=652477, downTime=652477, deviceId=-1, source=0x101 }
10-06 17:20:57.080  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=652477, downTime=652477, deviceId=-1, source=0x101 }
10-06 17:21:07.570  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=662970, downTime=662970, deviceId=-1, source=0x101 }
10-06 17:21:07.574  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=662975, downTime=662975, deviceId=-1, source=0x101 }
10-06 17:21:07.577  4497  4497 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=662975, downTime=662975, deviceId=-1, source=0x101 }
10-06 17:21:15.524  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:21:15.530  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:21:47.765  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:21:47.768  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:22:32.010  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:22:32.016  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:22:38.721  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:22:38.904  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:22:38.906  4497  4497 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:22:39.238  4497  4730 E AndroidRuntime: FATAL EXCEPTION: UnityMain
10-06 17:22:39.238  4497  4730 E AndroidRuntime: pid: 4497, tid: 4730, name: UnityMain  >>> com.picovrtob.vrlauncher <<<
10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.scripting_array_new(ScriptingClassPtr, unsigned int, unsigned int)(scripting_array_new:52)
10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.AndroidDisplayManager::Update()(Update:68)
10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.AndroidGraphics::ApplyPendingWindowChanges()(ApplyPendingWindowChanges:464)
10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.nativeFocusChanged(_JNIEnv*, _jobject*, bool)(nativeFocusChanged:76)
10-06 17:22:39.935  4788  4788 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:22:40.137  4788  4788 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:23:19.823  4788  4788 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:23:19.827  4788  4788 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:23:28.990  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=1304.0, y[0]=1574.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=804390, downTime=804390, deviceId=0, source=0x1002 }
10-06 17:23:28.991  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=1304.0, y[0]=1574.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=804390, downTime=804390, deviceId=0, source=0x1002 }
10-06 17:46:23.297  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:46:23.473  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:46:24.115  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:46:24.117  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:46:34.391  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2189785, downTime=2189785, deviceId=-1, source=0x101 }
10-06 17:46:34.394  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2189785, downTime=2189785, deviceId=-1, source=0x101 }
10-06 17:46:44.061  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2199459, downTime=2199459, deviceId=-1, source=0x101 }
10-06 17:46:44.067  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2199467, downTime=2199467, deviceId=-1, source=0x101 }
10-06 17:46:44.070  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2199467, downTime=2199467, deviceId=-1, source=0x101 }
10-06 17:46:54.067  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2209466, downTime=2209466, deviceId=-1, source=0x101 }
10-06 17:46:54.071  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2209472, downTime=2209472, deviceId=-1, source=0x101 }
10-06 17:46:54.074  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2209472, downTime=2209472, deviceId=-1, source=0x101 }
10-06 17:47:04.077  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2219474, downTime=2219474, deviceId=-1, source=0x101 }
10-06 17:47:04.081  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2219482, downTime=2219482, deviceId=-1, source=0x101 }
10-06 17:47:04.084  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2219482, downTime=2219482, deviceId=-1, source=0x101 }
10-06 17:47:14.087  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2229487, downTime=2229487, deviceId=-1, source=0x101 }
10-06 17:47:14.091  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2229492, downTime=2229492, deviceId=-1, source=0x101 }
10-06 17:47:14.093  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2229492, downTime=2229492, deviceId=-1, source=0x101 }
10-06 17:47:24.595  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2239995, downTime=2239995, deviceId=-1, source=0x101 }
10-06 17:47:24.599  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2240001, downTime=2240001, deviceId=-1, source=0x101 }
10-06 17:47:24.602  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2240001, downTime=2240001, deviceId=-1, source=0x101 }
10-06 17:47:35.102  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2250502, downTime=2250502, deviceId=-1, source=0x101 }
10-06 17:47:35.105  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2250507, downTime=2250507, deviceId=-1, source=0x101 }
10-06 17:47:35.107  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2250507, downTime=2250507, deviceId=-1, source=0x101 }
10-06 17:47:45.120  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2260519, downTime=2260519, deviceId=-1, source=0x101 }
10-06 17:47:45.124  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2260525, downTime=2260525, deviceId=-1, source=0x101 }
10-06 17:47:45.126  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2260525, downTime=2260525, deviceId=-1, source=0x101 }
10-06 17:47:55.128  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2270527, downTime=2270527, deviceId=-1, source=0x101 }
10-06 17:47:55.131  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2270533, downTime=2270533, deviceId=-1, source=0x101 }
10-06 17:47:55.133  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2270533, downTime=2270533, deviceId=-1, source=0x101 }
10-06 17:48:05.136  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2280534, downTime=2280534, deviceId=-1, source=0x101 }
10-06 17:48:05.140  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2280542, downTime=2280542, deviceId=-1, source=0x101 }
10-06 17:48:05.142  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2280542, downTime=2280542, deviceId=-1, source=0x101 }
10-06 17:48:15.157  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2290554, downTime=2290554, deviceId=-1, source=0x101 }
10-06 17:48:15.161  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2290563, downTime=2290563, deviceId=-1, source=0x101 }
10-06 17:48:15.163  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2290563, downTime=2290563, deviceId=-1, source=0x101 }
10-06 17:48:25.167  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2300565, downTime=2300565, deviceId=-1, source=0x101 }
10-06 17:48:25.170  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2300572, downTime=2300572, deviceId=-1, source=0x101 }
10-06 17:48:25.172  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2300572, downTime=2300572, deviceId=-1, source=0x101 }
10-06 17:48:35.169  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2310567, downTime=2310567, deviceId=-1, source=0x101 }
10-06 17:48:35.172  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2310574, downTime=2310574, deviceId=-1, source=0x101 }
10-06 17:48:35.174  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2310574, downTime=2310574, deviceId=-1, source=0x101 }
10-06 17:48:45.189  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2320587, downTime=2320587, deviceId=-1, source=0x101 }
10-06 17:48:45.192  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2320594, downTime=2320594, deviceId=-1, source=0x101 }
10-06 17:48:45.194  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2320594, downTime=2320594, deviceId=-1, source=0x101 }
10-06 17:48:55.199  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2330598, downTime=2330598, deviceId=-1, source=0x101 }
10-06 17:48:55.203  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2330605, downTime=2330605, deviceId=-1, source=0x101 }
10-06 17:48:55.206  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2330605, downTime=2330605, deviceId=-1, source=0x101 }
10-06 17:49:05.709  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2341108, downTime=2341108, deviceId=-1, source=0x101 }
10-06 17:49:05.712  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2341114, downTime=2341114, deviceId=-1, source=0x101 }
10-06 17:49:05.714  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2341114, downTime=2341114, deviceId=-1, source=0x101 }
10-06 17:49:15.711  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2351111, downTime=2351111, deviceId=-1, source=0x101 }
10-06 17:49:15.716  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2351117, downTime=2351117, deviceId=-1, source=0x101 }
10-06 17:49:15.718  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2351117, downTime=2351117, deviceId=-1, source=0x101 }
10-06 17:49:25.728  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2361128, downTime=2361128, deviceId=-1, source=0x101 }
10-06 17:49:25.732  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2361134, downTime=2361134, deviceId=-1, source=0x101 }
10-06 17:49:25.734  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2361134, downTime=2361134, deviceId=-1, source=0x101 }
10-06 17:49:35.740  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2371140, downTime=2371140, deviceId=-1, source=0x101 }
10-06 17:49:35.745  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2371146, downTime=2371146, deviceId=-1, source=0x101 }
10-06 17:49:35.748  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2371146, downTime=2371146, deviceId=-1, source=0x101 }
10-06 17:49:45.756  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2381153, downTime=2381153, deviceId=-1, source=0x101 }
10-06 17:49:45.759  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2381161, downTime=2381161, deviceId=-1, source=0x101 }
10-06 17:49:45.760  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2381161, downTime=2381161, deviceId=-1, source=0x101 }
10-06 17:49:56.266  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2391663, downTime=2391663, deviceId=-1, source=0x101 }
10-06 17:49:56.270  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2391671, downTime=2391671, deviceId=-1, source=0x101 }
10-06 17:49:56.272  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2391671, downTime=2391671, deviceId=-1, source=0x101 }
10-06 17:50:06.278  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2401676, downTime=2401676, deviceId=-1, source=0x101 }
10-06 17:50:06.281  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2401683, downTime=2401683, deviceId=-1, source=0x101 }
10-06 17:50:06.283  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2401683, downTime=2401683, deviceId=-1, source=0x101 }
10-06 17:50:16.286  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2411684, downTime=2411684, deviceId=-1, source=0x101 }
10-06 17:50:16.290  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2411692, downTime=2411692, deviceId=-1, source=0x101 }
10-06 17:50:16.291  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2411692, downTime=2411692, deviceId=-1, source=0x101 }
10-06 17:50:26.298  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2421696, downTime=2421696, deviceId=-1, source=0x101 }
10-06 17:50:26.301  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2421703, downTime=2421703, deviceId=-1, source=0x101 }
10-06 17:50:26.303  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2421703, downTime=2421703, deviceId=-1, source=0x101 }
10-06 17:50:36.307  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2431704, downTime=2431704, deviceId=-1, source=0x101 }
10-06 17:50:36.311  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2431712, downTime=2431712, deviceId=-1, source=0x101 }
10-06 17:50:36.313  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2431712, downTime=2431712, deviceId=-1, source=0x101 }
10-06 17:50:46.320  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2441720, downTime=2441720, deviceId=-1, source=0x101 }
10-06 17:50:46.324  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2441725, downTime=2441725, deviceId=-1, source=0x101 }
10-06 17:50:46.326  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2441725, downTime=2441725, deviceId=-1, source=0x101 }
10-06 17:50:56.334  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=2451731, downTime=2451731, deviceId=-1, source=0x101 }
10-06 17:50:56.338  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2451739, downTime=2451739, deviceId=-1, source=0x101 }
10-06 17:50:56.340  5346  5346 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2451739, downTime=2451739, deviceId=-1, source=0x101 }
10-06 17:51:05.436  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:51:05.441  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:51:32.451  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:51:32.456  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:51:47.929  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:51:47.934  3070  3070 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.picovr.vrsettingslib.UnityActivity:3dof package and type is com.picovr.settings:null
10-06 17:52:00.160  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:52:00.284  5346  5346 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:52:00.661  5346  5644 E AndroidRuntime: FATAL EXCEPTION: UnityMain
10-06 17:52:00.661  5346  5644 E AndroidRuntime: pid: 5346, tid: 5644, name: UnityMain  >>> com.picovrtob.vrlauncher <<<
10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.scripting_array_new(ScriptingClassPtr, unsigned int, unsigned int)(scripting_array_new:52)
10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.AndroidDisplayManager::Update()(Update:68)
10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.AndroidGraphics::ApplyPendingWindowChanges()(ApplyPendingWindowChanges:464)
10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.nativeFocusChanged(_JNIEnv*, _jobject*, bool)(nativeFocusChanged:76)
10-06 17:52:01.158  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:52:01.347  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:52:43.090  5672  5672 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2558490, downTime=2558490, deviceId=-1, source=0x101 }
10-06 17:52:43.092  5672  5672 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2558490, downTime=2558490, deviceId=-1, source=0x101 }
10-06 17:52:45.628  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:52:45.632  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:53:00.040  5672  5672 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2575442, downTime=2575442, deviceId=-1, source=0x101 }
10-06 17:53:00.041  5672  5672 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=2575442, downTime=2575442, deviceId=-1, source=0x101 }
10-06 17:53:08.427  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:53:08.431  5672  5672 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 17:53:10.915  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=1505.0, y[0]=1585.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2586317, downTime=2586317, deviceId=0, source=0x1002 }
10-06 17:53:10.916  3070  3070 W ViewRootImpl[UnityActivity]: Cancelling event due to no window focus: MotionEvent { action=ACTION_CANCEL, actionButton=0, id[0]=0, x[0]=1505.0, y[0]=1585.0, toolType[0]=TOOL_TYPE_UNKNOWN, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2586317, downTime=2586317, deviceId=0, source=0x1002 }
10-06 18:22:30.806  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:22:30.945  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:22:31.575  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:22:31.577  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:22:41.462  6294  6294 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4356860, downTime=4356860, deviceId=-1, source=0x101 }
10-06 18:22:41.464  6294  6294 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4356860, downTime=4356860, deviceId=-1, source=0x101 }
10-06 18:22:51.223  6294  6294 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=4366623, downTime=4366623, deviceId=-1, source=0x101 }
10-06 18:22:51.229  6294  6294 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4366629, downTime=4366629, deviceId=-1, source=0x101 }
10-06 18:22:51.232  6294  6294 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4366629, downTime=4366629, deviceId=-1, source=0x101 }
10-06 18:22:51.736  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:22:51.740  6294  6294 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:05.244  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:05.382  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:06.026  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:06.028  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:24.961  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:28:24.968  6588  6588 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:34.716  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:34.851  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:34.934  6884  6884 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=4950122, downTime=4950122, deviceId=-1, source=0x101 }
10-06 18:32:34.960  6884  6884 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4950339, downTime=4950339, deviceId=-1, source=0x101 }
10-06 18:32:34.961  6884  6884 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4950339, downTime=4950339, deviceId=-1, source=0x101 }
10-06 18:32:35.499  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:35.502  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:45.494  6884  6884 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4960889, downTime=4960889, deviceId=-1, source=0x101 }
10-06 18:32:45.497  6884  6884 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=4960889, downTime=4960889, deviceId=-1, source=0x101 }
10-06 18:32:49.905  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:32:49.909  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:33:02.610  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:33:02.613  6884  6884 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:33:23.588  7097  7097 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:33:23.771  7097  7097 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:34:03.469  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=5038692, downTime=5038692, deviceId=-1, source=0x101 }
10-06 18:34:03.472  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5038874, downTime=5038874, deviceId=-1, source=0x101 }
10-06 18:34:03.474  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5038874, downTime=5038874, deviceId=-1, source=0x101 }
10-06 18:34:13.285  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=5048684, downTime=5048684, deviceId=-1, source=0x101 }
10-06 18:34:13.290  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5048691, downTime=5048691, deviceId=-1, source=0x101 }
10-06 18:34:13.294  7097  7097 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5048691, downTime=5048691, deviceId=-1, source=0x101 }
10-06 18:34:19.383  7097  7097 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:34:19.385  7097  7097 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:28.898  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:29.047  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:29.685  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:29.687  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:39.699  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5255098, downTime=5255098, deviceId=-1, source=0x101 }
10-06 18:37:39.702  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5255098, downTime=5255098, deviceId=-1, source=0x101 }
10-06 18:37:39.703  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5255101, downTime=5255101, deviceId=-1, source=0x101 }
10-06 18:37:39.704  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5255101, downTime=5255101, deviceId=-1, source=0x101 }
10-06 18:37:49.447  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=5264843, downTime=5264843, deviceId=-1, source=0x101 }
10-06 18:37:49.451  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5264852, downTime=5264852, deviceId=-1, source=0x101 }
10-06 18:37:49.456  7364  7364 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=5264852, downTime=5264852, deviceId=-1, source=0x101 }
10-06 18:37:57.806  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:37:57.808  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:38:11.262  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
10-06 18:38:11.289  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
10-06 18:38:13.176  2720  2720 D HbClientReceiver: connect unityObjectName == null
10-06 18:38:15.148  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
10-06 18:38:17.421  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:38:17.424  7364  7364 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 18:38:26.182  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
10-06 18:39:49.586  2720  2720 D HbClientReceiver: disconnect unityObjectName == null
10-06 19:02:04.630  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
10-06 19:02:06.355  2720  2720 D HbClientReceiver: connect unityObjectName == null
10-06 19:02:08.454   918  1031 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico (has extras)} from uid 1000
10-06 19:02:08.493   918  7614 I ActivityManager: Start proc 7944:com.picovrtob.vrlauncher/u0a71 for activity com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico
10-06 19:02:08.586  7944  7944 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:02:08.772  7944  7944 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:02:24.438  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,338
10-06 19:02:24.438  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
10-06 19:02:24.471  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:02:24.523  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:02:32.313   918  2000 I ActivityManager:   Force finishing activity ActivityRecord{661feaf u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t338}
10-06 19:03:06.354   918  1031 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico (has extras)} from uid 1000
10-06 19:03:06.394   918  1766 I ActivityManager: Start proc 8095:com.picovrtob.vrlauncher/u0a71 for activity com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico
10-06 19:03:06.519  8095  8095 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:03:06.729  8095  8095 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:03:09.974  8095  8122 W Unity   : This platform does NOT support 6 Dof !
10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.Debug:LogWarning(Object)
10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKSensor:InitUnitySDK6DofSensor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:96)
10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKSensor:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:47)
10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKSensor:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:8)
10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:665)
10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
10-06 19:03:09.976  8095  8122 I UnityPlugin: Pvr_InitSensor_ ENTER
10-06 19:03:09.976  8095  8122 I UnityPlugin: Pvr_InitSensor_ EXIT
10-06 19:03:09.977  8095  8122 I UnityPlugin: Pvr_StartSensor_ enter
10-06 19:03:09.977  8095  8122 I UnityPlugin: Pvr_StartSensor_ exit
10-06 19:03:09.985  8095  8122 I Unity   : Start home key   Receiver
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:09.985  8095  8122 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StartHomeKeyReceiver(String) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:727)
10-06 19:03:09.985  8095  8122 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:667)
10-06 19:03:09.985  8095  8122 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:03:09.985  8095  8122 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Object:Internal_Instantia
10-06 19:03:09.987  8095  8122 I Unity   : SDK Init success.
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:09.987  8095  8122 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:921)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:202)
10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Instantiate(Player, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:276)
10-06 19:03:09.987  8095  8122 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:76)
10-06 19:03:09.987  8095  8122 I Unity   :
10-06 19:03:09.987  8095  8122 I Unity   : (Filename
10-06 19:03:10.009  8095  8122 I Unity   : PlayerService: Setting up Pico HMD.
10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.009  8095  8122 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:82)
10-06 19:03:10.009  8095  8122 I Unity   :
10-06 19:03:10.009  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.009  8095  8122 I Unity   :
10-06 19:03:10.011  8095  8122 I Unity   : VideoService: Instantiating video player.
10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.011  8095  8122 I Unity   : VideoService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:43)
10-06 19:03:10.011  8095  8122 I Unity   :
10-06 19:03:10.011  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.011  8095  8122 I Unity   :
10-06 19:03:10.044  8095  8122 I Unity   : ###################### Attempting a UnityWebRequest for asset bundle: videos, at path: jar:file:///data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk!/assets/videos
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.044  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:98)
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:10.044  8095  8122 I Unity   : VideoService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs
10-06 19:03:10.224  8095  8122 I Unity   : ####################### Successfully got videoService.
10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.224  8095  8122 I Unity   : PlayVideoTest:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:43)
10-06 19:03:10.224  8095  8122 I Unity   :
10-06 19:03:10.224  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.224  8095  8122 I Unity   :
10-06 19:03:10.232  8095  8122 I Unity   : InitRenderThreadRoutine begin
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.232  8095  8122 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1032)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:10.232  8095  8122 I Unity   : <Start>d__159:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1026)
10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/u
10-06 19:03:10.264  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.264  8095  8122 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:03:10.264  8095  8122 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:03:10.264  8095  8122 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:03:10.264  8095  8122 I Unity   :
10-06 19:03:10.264  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.264  8095  8122 I Unity   :
10-06 19:03:10.294  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:03:10.319  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:03:10.360  8095  8122 I Unity   : +++++++++++++++++++++++++++++++0
10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.360  8095  8122 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.360  8095  8122 I Unity   :
10-06 19:03:10.360  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.360  8095  8122 I Unity   :
10-06 19:03:10.405  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.405  8095  8122 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:03:10.405  8095  8122 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:03:10.405  8095  8122 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:03:10.405  8095  8122 I Unity   :
10-06 19:03:10.405  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.405  8095  8122 I Unity   :
10-06 19:03:10.406  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:03:10.424  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:03:10.445  8095  8122 I Unity   : +++++++++++++++++++++++++++++++1
10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.445  8095  8122 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.445  8095  8122 I Unity   :
10-06 19:03:10.445  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.445  8095  8122 I Unity   :
10-06 19:03:10.451  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.451  8095  8122 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:03:10.451  8095  8122 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:03:10.451  8095  8122 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:03:10.451  8095  8122 I Unity   :
10-06 19:03:10.451  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.451  8095  8122 I Unity   :
10-06 19:03:10.453  8095  8122 I Unity   : InitRenderThreadRoutine after a wait
10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.453  8095  8122 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1037)
10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.453  8095  8122 I Unity   :
10-06 19:03:10.453  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.453  8095  8122 I Unity   :
10-06 19:03:10.456  8095  8122 I UnityPlugin: EVENT_INIT_RENDERTHREAD, not VR9
10-06 19:03:10.457  8095  8122 I UnityPlugin: PVR_InitRenderThread()
10-06 19:03:10.458  8095  8122 I UnityPlugin: FOVEA Checking for glTextureFoveationParametersEXT support...
10-06 19:03:10.458  8095  8122 I UnityPlugin: FOVEA glTextureFoveationParametersQCOM SUPPORTED
10-06 19:03:10.458  8095  8122 I UnityPlugin: Mode Parms CpuLevel 2 GpuLevel 2
10-06 19:03:10.458  8095  8122 I UnityPlugin: ENABLE_CHROMATIC    true
10-06 19:03:10.458  8095  8122 I UnityPlugin: PVR_Resume()
10-06 19:03:10.503  8095  8122 I Unity   : IssueRenderThread end
10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.503  8095  8122 I Unity   : Pvr_UnitySDKRender:IssueRenderThread() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:85)
10-06 19:03:10.503  8095  8122 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1042)
10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.503  8095  8122 I Unity   :
10-06 19:03:10.503  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.503  8095  8122 I Unity   :
10-06 19:03:10.505  8095  8122 I Unity   : InitRenderThreadRoutine end
10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.505  8095  8122 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1049)
10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.505  8095  8122 I Unity   :
10-06 19:03:10.505  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.505  8095  8122 I Unity   :
10-06 19:03:10.545  8095  8122 I Unity   : +++++++++++++++++++++++++++++++2
10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:10.545  8095  8122 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:10.545  8095  8122 I Unity   :
10-06 19:03:10.545  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:10.545  8095  8122 I Unity   :
10-06 19:03:10.545  8095  8122 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:03:10.877  8095  8095 I UnityPlayerNativeActivityPico: remove Imageview 1
10-06 19:03:10.877  8095  8095 E UnityPlayerNativeActivityPico: msg 1 received, but animation is null.
10-06 19:03:12.790  8095  8122 I Unity   : ###################### Successfully loaded Asset Bundle: videos
10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.790  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:118)
10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.790  8095  8122 I Unity   :
10-06 19:03:12.790  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.790  8095  8122 I Unity   :
10-06 19:03:12.791  8095  8122 I Unity   : ####################### switch statement for assent bundle: videos
10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.791  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:121)
10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.791  8095  8122 I Unity   :
10-06 19:03:12.791  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.791  8095  8122 I Unity   :
10-06 19:03:12.792  8095  8122 I Unity   : ####################### case: videos
10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.792  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:126)
10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.792  8095  8122 I Unity   :
10-06 19:03:12.792  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.792  8095  8122 I Unity   :
10-06 19:03:12.796  8095  8122 I Unity   : Got the following 2 names from asset bundle: videos
10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.796  8095  8122 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:151)
10-06 19:03:12.796  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.796  8095  8122 I Unity   :
10-06 19:03:12.796  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.796  8095  8122 I Unity   :
10-06 19:03:12.798  8095  8122 I Unity   : - assets/videos/legend of maui_cc_7_18.mp4
10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.798  8095  8122 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:155)
10-06 19:03:12.798  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.798  8095  8122 I Unity   :
10-06 19:03:12.798  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.798  8095  8122 I Unity   :
10-06 19:03:12.801  8095  8122 I Unity   : - assets/videos/moma_loves_mud.mp4
10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.801  8095  8122 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:155)
10-06 19:03:12.801  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.801  8095  8122 I Unity   :
10-06 19:03:12.801  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.801  8095  8122 I Unity   :
10-06 19:03:12.803  8095  8122 I Unity   : ####################### LoadVideo called.
10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.803  8095  8122 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:49)
10-06 19:03:12.803  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:133)
10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.803  8095  8122 I Unity   :
10-06 19:03:12.803  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:12.803  8095  8122 I Unity   :
10-06 19:03:12.808  8095  8122 I Unity   : ####################### LoadVideo called...
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.808  8095  8122 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:162)
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:12.808  8095  8122 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:03:12.808  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:133)
10-06 19:03:12.808  8095  8122 I Unity   : Uni
10-06 19:03:12.811  8095  8122 I Unity   : Attempting to load video: assets/videos/legend of maui_cc_7_18.mp4 from asset bundle: videos
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.811  8095  8122 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:177)
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:12.811  8095  8122 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:03:12.811  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject
10-06 19:03:12.817  8095  8122 I Unity   : ######################## Successfully loaded video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.817  8095  8122 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:187)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:12.817  8095  8122 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:03:12.817  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_U
10-06 19:03:12.819  8095  8122 I Unity   : ####################### PlayVideo called.
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.819  8095  8122 I Unity   : PlayVideoTest:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:55)
10-06 19:03:12.819  8095  8122 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:188)
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:03:12.819  8095  8122 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:03:12.819  8095  8122 I Unity   : <LoadAssetBundle>d__25
10-06 19:03:12.823  8095  8122 I Unity   : ###################### Playing video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:12.823  8095  8122 I Unity   : VideoService:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:245)
10-06 19:03:12.823  8095  8122 I Unity   : PlayVideoTest:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:56)
10-06 19:03:12.823  8095  8122 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:188)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Script
10-06 19:03:12.867  8095  8143 W Unity   : AndroidVideoMedia::OpenExtractor could not translate archive:/CAB-065dd18caae01e46bb402481ee5f38e2/CAB-065dd18caae01e46bb402481ee5f38e2.resource to local file. Make sure file exists, is on disk (not in memory) and not compressed.
10-06 19:03:12.867  8095  8143 W Unity   :
10-06 19:03:12.867  8095  8143 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
10-06 19:03:12.867  8095  8143 W Unity   :
10-06 19:03:12.868  8095  8143 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
10-06 19:03:12.868  8095  8143 W Unity   :
10-06 19:03:12.868  8095  8143 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
10-06 19:03:12.868  8095  8143 W Unity   :
10-06 19:03:44.472  8095  8095 I UnityPlayerNativeActivityPico: onPause set cpu 0
10-06 19:03:44.472  8095  8095 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:03:44.582  8095  8095 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
10-06 19:03:44.582  8095  8095 I Unity   : onPause
10-06 19:03:44.603  8095  8122 I Unity   : ####################### OnApplicationPause: True
10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:44.603  8095  8122 I Unity   : PlayVideoTest:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:73)
10-06 19:03:44.603  8095  8122 I Unity   :
10-06 19:03:44.603  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:44.603  8095  8122 I Unity   :
10-06 19:03:44.606  8095  8122 I Unity   : OnApplicationPause-------------------------true
10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:44.606  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1345)
10-06 19:03:44.606  8095  8122 I Unity   :
10-06 19:03:44.606  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:44.606  8095  8122 I Unity   :
10-06 19:03:44.613  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- True
10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:44.613  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1350)
10-06 19:03:44.613  8095  8122 I Unity   :
10-06 19:03:44.613  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:44.613  8095  8122 I Unity   :
10-06 19:03:44.618  8095  8122 I Unity   : Stop home key   Receiver
10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:03:44.618  8095  8122 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StopHomeKeyReceiver() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:748)
10-06 19:03:44.618  8095  8122 I Unity   : Pvr_UnitySDKManager:OnPause() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1335)
10-06 19:03:44.618  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1361)
10-06 19:03:44.618  8095  8122 I Unity   :
10-06 19:03:44.618  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:03:44.618  8095  8122 I Unity   :
10-06 19:03:44.619  8095  8122 I UnityPlugin: EVENT_PAUSE, not VR9
10-06 19:03:44.619  8095  8122 I UnityPlugin: PVR_Pause()
10-06 19:03:44.643  8095  8122 I UnityPlugin: Pvr_StopSensor_ enter
10-06 19:03:44.643  8095  8122 I UnityPlugin: Pvr_StopSensor_ exit
10-06 19:03:44.647  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:03:44.650  8095  8095 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
10-06 19:03:44.656  8095  8122 D Unity   : SetWindow 0 0x0
10-06 19:03:44.659  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6820058, downTime=6820058, deviceId=-1, source=0x101 }
10-06 19:03:44.661  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6820058, downTime=6820058, deviceId=-1, source=0x101 }
10-06 19:03:54.474  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=6829873, downTime=6829873, deviceId=-1, source=0x101 }
10-06 19:03:54.480  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6829879, downTime=6829879, deviceId=-1, source=0x101 }
10-06 19:03:54.483  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6829879, downTime=6829879, deviceId=-1, source=0x101 }
10-06 19:04:04.982  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=6840382, downTime=6840382, deviceId=-1, source=0x101 }
10-06 19:04:04.987  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6840388, downTime=6840388, deviceId=-1, source=0x101 }
10-06 19:04:04.990  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6840388, downTime=6840388, deviceId=-1, source=0x101 }
10-06 19:04:15.487  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x8, repeatCount=0, eventTime=6850887, downTime=6850887, deviceId=-1, source=0x101 }
10-06 19:04:15.491  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6850892, downTime=6850892, deviceId=-1, source=0x101 }
10-06 19:04:15.494  8095  8095 W ViewRootImpl[UnityPlayerNativeActivityPico]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_MEDIA_PAUSE, scanCode=0, metaState=0, flags=0x28, repeatCount=0, eventTime=6850892, downTime=6850892, deviceId=-1, source=0x101 }
10-06 19:04:20.066  8095  8122 D Unity   : SetWindow 0 0xdfb6c008
10-06 19:04:20.066  8095  8122 D Unity   : SetWindow 0 0xdfb6c008
10-06 19:04:20.091  8095  8095 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:04:20.097  8095  8095 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:04:20.101  8095  8095 I UnityPlayerNativeActivityPico: ======onResume111111111===
10-06 19:04:20.104  8095  8095 I UnityPlayerNativeActivityPico: start seting  ORIENTATION  0
10-06 19:04:20.108  8095  8095 I UnityPlayerNativeActivityPico: onResume get iLogicFlow = 0
10-06 19:04:20.108  8095  8095 I Unity   : onResume
10-06 19:04:20.109  8095  8122 D Unity   : [EGL] Attaching window :0xdfb6c008
10-06 19:04:20.110  8095  8122 E Unity   : [EGL] eglDestroySurface(m_EGLDisplay, m_EGLSurface): EGL_BAD_SURFACE: An EGLSurface argument does not name a valid surface (window, pixel buffer or pixmap) configured for GL rendering.
10-06 19:04:20.110  8095  8122 E Unity   :
10-06 19:04:20.110  8095  8122 E Unity   : (Filename: ./Runtime/GfxDevice/egl/WindowContextEGL.cpp Line: 78)
10-06 19:04:20.110  8095  8122 E Unity   :
10-06 19:04:20.118  8095  8122 D Unity   : ANativeWindow: (2880/1600) RequestedResolution: (0/0) RenderingResolution: (0/0) EGLSurface: (2880/1600)
10-06 19:04:20.127  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:04:20.137  8095  8122 D Unity   : Choreographer available: Enabling VSYNC timing
10-06 19:04:20.139  8095  8122 I Unity   : ####################### OnApplicationPause: False
10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:20.139  8095  8122 I Unity   : PlayVideoTest:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:73)
10-06 19:04:20.139  8095  8122 I Unity   :
10-06 19:04:20.139  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:20.139  8095  8122 I Unity   :
10-06 19:04:20.140  8095  8122 I Unity   : OnApplicationPause-------------------------false
10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:20.140  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1345)
10-06 19:04:20.140  8095  8122 I Unity   :
10-06 19:04:20.140  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:20.140  8095  8122 I Unity   :
10-06 19:04:20.141  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- False
10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:20.141  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1350)
10-06 19:04:20.141  8095  8122 I Unity   :
10-06 19:04:20.141  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:20.141  8095  8122 I Unity   :
10-06 19:04:20.144  8095  8122 I UnityPlugin: Pvr_StartSensor_ enter
10-06 19:04:20.145  8095  8122 I UnityPlugin: Pvr_StartSensor_ exit
10-06 19:04:20.153  8095  8122 I UnityPlayerNativeActivityPico: LLLL presentationDisplays.length = 0
10-06 19:04:20.156  8095  8122 I Unity   : onresume set monoPresentation success ?-------------True
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:20.156  8095  8122 I Unity   : <OnResume>d__172:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1452)
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:04:20.156  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1367)
10-06 19:04:20.156  8095  8122 I Unity   :
10-06 19:04:20.156  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:20.156  8095  8122 I Unity   :
10-06 19:04:20.166  8095  8122 I Unity   : onresume presentation existed ?-------------False
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:20.166  8095  8122 I Unity   : <OnResume>d__172:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1458)
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:04:20.166  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1367)
10-06 19:04:20.166  8095  8122 I Unity   :
10-06 19:04:20.166  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:20.166  8095  8122 I Unity   :
10-06 19:04:20.172  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:20.188  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:20.204  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:20.205  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:21.219  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:21.399  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:21.411  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:21.506  8095  8122 I UnityPlugin: FOVEA up.focused == false!
10-06 19:04:21.520  8095  8122 I UnityPlugin: EVENT_RESUME, not VR9
10-06 19:04:21.520  8095  8122 I UnityPlugin: PVR_Resume()
10-06 19:04:21.562  8095  8122 I Unity   : Start home key   Receiver
10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:21.562  8095  8122 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StartHomeKeyReceiver(String) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:727)
10-06 19:04:21.562  8095  8122 I Unity   : <OnResume>d__172:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1469)
10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:04:21.562  8095  8122 I Unity   :
10-06 19:04:21.562  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:21.562  8095  8122 I Unity   :
10-06 19:04:21.564  8095  8122 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:04:22.428  8095  8095 I UnityPlayerNativeActivityPico: onPause set cpu 0
10-06 19:04:22.428  8095  8095 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:04:22.474  8095  8095 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
10-06 19:04:22.474  8095  8095 I Unity   : onPause
10-06 19:04:22.483  8095  8122 I Unity   : ####################### OnApplicationPause: True
10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.483  8095  8122 I Unity   : PlayVideoTest:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:73)
10-06 19:04:22.483  8095  8122 I Unity   :
10-06 19:04:22.483  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.483  8095  8122 I Unity   :
10-06 19:04:22.484  8095  8122 I Unity   : OnApplicationPause-------------------------true
10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.484  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1345)
10-06 19:04:22.484  8095  8122 I Unity   :
10-06 19:04:22.484  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.484  8095  8122 I Unity   :
10-06 19:04:22.485  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- True
10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.485  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1350)
10-06 19:04:22.485  8095  8122 I Unity   :
10-06 19:04:22.485  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.485  8095  8122 I Unity   :
10-06 19:04:22.487  8095  8122 I Unity   : Stop home key   Receiver
10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.487  8095  8122 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StopHomeKeyReceiver() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:748)
10-06 19:04:22.487  8095  8122 I Unity   : Pvr_UnitySDKManager:OnPause() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1335)
10-06 19:04:22.487  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1361)
10-06 19:04:22.487  8095  8122 I Unity   :
10-06 19:04:22.487  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.487  8095  8122 I Unity   :
10-06 19:04:22.487  8095  8122 I UnityPlugin: EVENT_PAUSE, not VR9
10-06 19:04:22.487  8095  8122 I UnityPlugin: PVR_Pause()
10-06 19:04:22.509  8095  8122 I UnityPlugin: Pvr_StopSensor_ enter
10-06 19:04:22.509  8095  8122 I UnityPlugin: Pvr_StopSensor_ exit
10-06 19:04:22.519  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:04:22.521  8095  8095 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
10-06 19:04:22.528  8095  8095 I Unity   : windowFocusChanged: false
10-06 19:04:22.531  8095  8122 I Unity   : ####################### OnApplicationFocus, hasFocus: False
10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.531  8095  8122 I Unity   : PlayVideoTest:OnApplicationFocus(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:67)
10-06 19:04:22.531  8095  8122 I Unity   :
10-06 19:04:22.531  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.531  8095  8122 I Unity   :
10-06 19:04:22.536  8095  8122 I Unity   : OnApplicationFocus-------------------------false
10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:04:22.536  8095  8122 I Unity   : Pvr_UnitySDKManager:OnApplicationFocus(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1374)
10-06 19:04:22.536  8095  8122 I Unity   :
10-06 19:04:22.536  8095  8122 I Unity   : (Filename: D Line: 0)
10-06 19:04:22.536  8095  8122 I Unity   :
10-06 19:04:22.536  2908  2908 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
10-06 19:04:22.556  2908  2908 I Shortcut: Home package is com.picovrtob.vrlauncher, activity is com.unity3d.player.UnityPlayerNativeActivityPico
10-06 19:04:22.557  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,340
10-06 19:04:22.557  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
10-06 19:04:22.583  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:04:22.610  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:04:22.641  8095  8122 D Unity   : SetWindow 0 0x0
10-06 19:04:26.464  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
10-06 19:04:28.458   918  2000 I ActivityManager:   Force finishing activity ActivityRecord{8f2e482 u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t340}
10-06 19:05:20.134   918  1031 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico (has extras)} from uid 1000
10-06 19:05:20.160   918  1031 E ActivityTrigger: activityStartTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
10-06 19:05:20.161   918  1031 E ActivityTrigger: activityResumeTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
10-06 19:05:20.164   918  4049 E ActivityTrigger: activityResumeTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
10-06 19:05:20.178   918  4049 I ActivityManager: Start proc 8288:com.picovrtob.vrlauncher/u0a71 for activity com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico
10-06 19:05:20.286  8288  8288 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:05:20.319  8288  8288 I ActivityVRFlag: Metadata value of VR flag com.picovr.type for component:ComponentInfo{com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico} is:null
10-06 19:05:20.319  8288  8288 I ActivityVRFlag: Metadata value of VR flag pvr.app.type for component:ComponentInfo{com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico} is:null
10-06 19:05:20.321  8288  8288 I ActivityVRFlag: Metadata value of orientation com.picovr.display.orientation for component:ComponentInfo{com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico} is:-1
10-06 19:05:20.322  8288  8288 I ActivityVRFlag: Metadata value of 2dtovrmode pvr.2dtovr.mode for component:ComponentInfo{com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico} is:-1
10-06 19:05:20.330  8288  8288 I VrApi   : open replaceable failed /system/lib/libPvr_UnitySDKExt3.so
10-06 19:05:20.336  8288  8288 I VrServiceApi: dlsym for getPVRModule failed dlopen failed: library "/system/lib/libPvr_UnitySDKExt3.so" not found
10-06 19:05:20.341  8288  8288 I UnityPlugin: PVR_SetCpuLevel  level 9999
10-06 19:05:20.431  8288  8288 I UnityPlayerNativeActivityPico: 2D loading dir: system/media/LoadingRes
10-06 19:05:20.452  8288  8288 I UnityPlayerNativeActivityPico: presentationDisplays.length 0
10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: WFDEnableStatus = 1
10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: onCreate get iLogicFlow = 0
10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: has android.permission.READ_EXTERNAL_STORAGE this
10-06 19:05:20.475  8288  8288 I UnityPlayerNativeActivityPico: ======onResume111111111===
10-06 19:05:20.478  8288  8288 I UnityPlayerNativeActivityPico: start seting  ORIENTATION  0
10-06 19:05:20.479  8288  8288 I UnityPlayerNativeActivityPico: onResume get iLogicFlow = 0
10-06 19:05:20.479  8288  8288 I Unity   : onResume
10-06 19:05:20.504  8288  8288 I UnityPlayerNativeActivityPico: onAttachedToWindow!!!!!!!!!!!
10-06 19:05:20.507   871   871 D SurfaceFlinger: layer[com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico#0] and layer[SurfaceView--] is not match
10-06 19:05:20.524  8288  8315 D Unity   : SetWindow 0 0xdfb67808
10-06 19:05:20.525  8288  8315 D Unity   : SetWindow 0 0xdfb67808
10-06 19:05:20.556  8288  8288 I Unity   : windowFocusChanged: true
10-06 19:05:20.559   918  1064 I ActivityManager: Displayed com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico: +393ms
10-06 19:05:20.472  8288  8288 V ActivityThread: notifyAppType2SF 2001 value is 0 activity and type is com.unity3d.player.UnityPlayerNativeActivityPico:3dof package and type is com.picovrtob.vrlauncher:null
10-06 19:05:20.579  8288  8315 D Unity   : Enabling Unity systrace
10-06 19:05:20.589  8288  8315 D Unity   : [VFS] Mount /data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk
10-06 19:05:20.613  8288  8315 I Unity   : SystemInfo CPU = ARMv7 VFPv3 NEON, Cores = 8, Memory = 3736mb
10-06 19:05:20.613  8288  8315 I Unity   : SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
10-06 19:05:20.614  8288  8315 I Unity   : ApplicationInfo com.picovrtob.vrlauncher version 1.0.0 build 361da795-f1a8-4b60-8d43-6a0eda1aa54b
10-06 19:05:20.614  8288  8315 I Unity   : Built from '2019.1/staging' branch, Version '2019.1.14f1 (148b5891095a)', Build type 'Development', Scripting Backend 'mono', CPU 'armeabi-v7a', Stripping 'Disabled'
10-06 19:05:20.623  8288  8315 D Unity   : Mono path[0] = '/data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk/assets/bin/Data/Managed'
10-06 19:05:20.623  8288  8315 D Unity   : Mono config path = 'assets/bin/Data/Managed/etc'
10-06 19:05:20.623  8288  8315 D Unity   : PlayerConnection initialized from /data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk/assets/bin/Data (debug = 0)
10-06 19:05:20.623  8288  8315 D Unity   : PlayerConnection initialized network socket : 0.0.0.0 55014
10-06 19:05:20.623  8288  8315 D Unity   : PlayerConnection initialized unix socket : Unity-com.picovrtob.vrlauncher
10-06 19:05:20.624  8288  8315 D Unity   : Multi-casting "[IP] 192.168.0.8 [Port] 55014 [Flags] 3 [Guid] 506555322 [EditorId] 1499562304 [Version] 1048832 [Id] AndroidPlayer(Pico_Pico_G2@192.168.0.8) [Debug] 1 [PackageName] AndroidPlayer" to [225.0.0.222:54997]...
10-06 19:05:20.624  8288  8315 D Unity   : Waiting for connection from host on [0.0.0.0:55014]...
10-06 19:05:20.876  8288  8315 D Unity   : PlayerConnection accepted from [192.168.0.6] handle:0x40
10-06 19:05:20.926  8288  8315 D Unity   : Started listening to [0.0.0.0:55014]
10-06 19:05:20.926  8288  8315 D Unity   : Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=0.0.0.0:56322
10-06 19:05:21.012  8288  8315 D Unity   : [EGL] Attaching window :0xdfb67808
10-06 19:05:21.012  8288  8315 D Unity   : InitializeScriptEngine OK (0xe2a12f00)
10-06 19:05:21.012  8288  8315 D Unity   : PlayerConnection already initialized - listening to [0.0.0.0:55014]
10-06 19:05:21.026  8288  8315 D Unity   : PlayerInitEngineNoGraphics OK
10-06 19:05:21.026  8288  8315 D Unity   : AndroidGraphics::Startup window =  0xdfb67808
10-06 19:05:21.026  8288  8315 D Unity   : [EGL] Attaching window :0xdfb67808
10-06 19:05:21.032  8288  8315 D Unity   : [EGL] Request: ES 3.2 RGB0 000 0/0
10-06 19:05:21.033  8288  8315 D Unity   : [EGL] Checking ES 3.2 support...
10-06 19:05:21.034  8288  8315 D Unity   : [EGL] ES 3.2 support detected
10-06 19:05:21.034  8288  8315 D Unity   : [EGL] Found: ID[1] ES 3.2 RGB16 565 0/0
10-06 19:05:21.034  8288  8315 D Unity   : [EGL] Request: ES 3.2 RGB0 000 0/0
10-06 19:05:21.035  8288  8315 D Unity   : [EGL] Found: ID[1] ES 3.2 RGB16 565 0/0
10-06 19:05:21.035  8288  8315 D Unity   : [EGL] Request: ES 3.0 RGB24 888 24/8
10-06 19:05:21.036  8288  8315 D Unity   : [EGL] Found: ID[7] ES 3.0 RGB24 888 24/8
10-06 19:05:21.036  8288  8315 D Unity   : extension is supported with value 0
10-06 19:05:21.036  8288  8315 D Unity   : extension is supported with value 1
10-06 19:05:21.036  8288  8315 D Unity   : extension is supported with value 2
10-06 19:05:21.039  8288  8315 D Unity   : ANativeWindow: (2880/1600) RequestedResolution: (0/0) RenderingResolution: (0/0) EGLSurface: (2880/1600)
10-06 19:05:21.043  8288  8315 D Unity   : Renderer: Adreno (TM) 540
10-06 19:05:21.043  8288  8315 D Unity   : Vendor:   Qualcomm
10-06 19:05:21.043  8288  8315 D Unity   : Version:  OpenGL ES 3.2 V@269.0 (GIT@04a4b71, Iaf0ce12d04) (Date:11/30/18)
10-06 19:05:21.043  8288  8315 D Unity   : GLES:     3
10-06 19:05:21.043  8288  8315 D Unity   :  GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_half_float GL_OES_framebuffer_object GL_OES_rgb8_rgba8 GL_OES_compressed_ETC1_RGB8_texture GL_AMD_compressed_ATC_texture GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_OES_texture_compression_astc GL_OES_texture_npot GL_EXT_texture_filter_anisotropic GL_EXT_texture_format_BGRA8888 GL_OES_texture_3D GL_EXT_color_buffer_float GL_EXT_color_buffer_half_float GL_QCOM_alpha_test GL_OES_depth24 GL_OES_packed_depth_stencil GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_EXT_sRGB GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_EXT_texture_type_2_10_10_10_REV GL_EXT_texture_sRGB_decode GL_OES_element_index_uint GL_EXT_copy_image GL_EXT_geometry_shader GL_EXT_tessellation_shader GL_OES_texture_stencil8 GL_EXT_shader_io_blocks GL_OES_shader_image_atomic GL_OES_sample_variables GL_EXT_texture_border_clamp GL_EXT_multisampled_render_to_texture GL_EXT_mul
10-06 19:05:21.043  8288  8315 D Unity   : tisampled_render_to_texture2 GL_OES_shader_multisample_interpolation GL_EXT_texture_cube_map_array GL_EXT_draw_buffers_indexed GL_EXT_gpu_shader5 GL_EXT_robustness GL_EXT_texture_buffer GL_EXT_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_OES_texture_storage_multisample_2d_array GL_OES_sample_shading GL_OES_get_program_binary GL_EXT_debug_label GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_QCOM_tiled_rendering GL_ANDROID_extension_pack_es31a GL_EXT_primitive_bounding_box GL_OES_standard_derivatives GL_OES_vertex_array_object GL_EXT_disjoint_timer_query GL_KHR_debug GL_EXT_YUV_target GL_EXT_sRGB_write_control GL_EXT_texture_norm16 GL_EXT_discard_framebuffer GL_OES_surfaceless_context GL_OVR_multiview GL_OVR_multiview2 GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_EXT_debug_marker GL_OES_EGL_image_external_essl3 GL_OVR_multiview_multisampled_render_to_texture GL_EXT_buffer_storage GL_EXT_external_buffer GL_EXT_blit_framebuffer_params GL_EXT_clip_cull_distance
10-06 19:05:21.043  8288  8315 D Unity   :  GL_EXT_protected_textures GL_EXT_shader_non_constant_global_initializers GL_QCOM_texture_foveated GL_QCOM_shader_framebuffer_fetch_noncoherent GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_EGL_image_array GL_NV_shader_noperspective_interpolation
10-06 19:05:21.049  8288  8315 D Unity   : OPENGL LOG: Creating OpenGL ES 3.2 graphics device ; Context level  <OpenGL ES 3.2> ; Context handle -909647488
10-06 19:05:21.050  8288  8315 D Unity   : [EGL] Attaching window :0xdfb67808
10-06 19:05:21.050  8288  8315 D Unity   : [EGL] Attaching window :0xdfb67808
10-06 19:05:21.050  8288  8315 D Unity   : Initialize engine version: 2019.1.14f1 (148b5891095a)
10-06 19:05:21.015  8288  8315 I chatty  : uid=10071(com.picovrtob.vrlauncher) UnityMain identical 15 lines
10-06 19:05:21.076  8288  8315 D Unity   : Begin MonoManager ReloadAssembly
10-06 19:05:21.079  8288  8315 D Unity   : Script Patching: Patch files are not available, '/storage/emulated/0/Android/data/com.picovrtob.vrlauncher/cache/ScriptOnly/2019.1.14f1/mono/patch.config' is missing.
10-06 19:05:21.416  8288  8315 D Unity   : - Completed reload, in  0.339 seconds
10-06 19:05:21.475  8288  8315 D Unity   : PlayerInitEngineGraphics OK
10-06 19:05:21.477  8288  8315 D Unity   : Found 50 native sensors
10-06 19:05:21.478  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:05:21.478  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:05:23.548  8288  8315 D Unity   : UnloadTime: 1.597500 ms
10-06 19:05:23.552  8288  8315 D Unity   : UUID: 23aaf967faf50a61 => 5bf752b54e7a4b5d8b827f59bf9c6433
10-06 19:05:23.646  8288  8315 I Unity   : ####################### OnApplicationPause: False
10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.646  8288  8315 I Unity   : PlayVideoTest:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:73)
10-06 19:05:23.646  8288  8315 I Unity   :
10-06 19:05:23.646  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:23.646  8288  8315 I Unity   :
10-06 19:05:23.649  8288  8315 I Unity   : ####################### OnApplicationFocus, hasFocus: True
10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.649  8288  8315 I Unity   : PlayVideoTest:OnApplicationFocus(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:67)
10-06 19:05:23.649  8288  8315 I Unity   :
10-06 19:05:23.649  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:23.649  8288  8315 I Unity   :
10-06 19:05:23.657  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:05:23.660  8288  8315 D Unity   : Choreographer available: Enabling VSYNC timing
10-06 19:05:23.666  8288  8315 I Unity   : PlayerService: Instantiating Pico player prefab.
10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.666  8288  8315 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:75)
10-06 19:05:23.666  8288  8315 I Unity   :
10-06 19:05:23.666  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:23.666  8288  8315 I Unity   :
10-06 19:05:23.684  8288  8315 I Unity   : viewer :False
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.684  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:857)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:202)
10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Player, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:276)
10-06 19:05:23.684  8288  8315 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:76)
10-06 19:05:23.684  8288  8315 I Unity   :
10-06 19:05:23.684  8288  8315 I Unity   : (Filename: D
10-06 19:05:23.768  8288  8315 I Unity   : Android 7 = False
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.768  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:630)
10-06 19:05:23.768  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:202)
10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Player, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindin
10-06 19:05:23.772  8288  8315 I Unity   : pvr_UnitySDKRender  init
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.772  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:653)
10-06 19:05:23.772  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.772  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineO
10-06 19:05:23.780  8288  8315 I Unity   : SDK Version :  2.7.9.4  Unity Script Version :2.7.9.4
10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKRender:ConnectToAndriod() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:172)
10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:21)
10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:654)
10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
10-06 19:05:23.817  8288  8315 I UnityClient: systemproc is 0
10-06 19:05:23.829  8288  8315 I Unity   : Init Render Ability Success!
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.829  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:22)
10-06 19:05:23.829  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:654)
10-06 19:05:23.829  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.829  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vecto
10-06 19:05:23.848  8288  8315 I Unity   : eyeBufferResolution:(2048.0, 2048.0), scaleFactor: 1
10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:GetEyeBufferResolution() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:135)
10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:270)
10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Pico
10-06 19:05:23.860  8288  8315 I Unity   : eyeTextureIndex : 0
10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.860  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.860  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.860  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.860  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.860  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.864  8288  8315 I Unity   : eyeTextureIndex : 1
10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.864  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.864  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.864  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.864  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.864  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.868  8288  8315 I Unity   : eyeTextureIndex : 2
10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.868  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.868  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.868  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.868  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.868  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.871  8288  8315 I Unity   : eyeTextureIndex : 3
10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.871  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.871  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.871  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.871  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.871  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.876  8288  8315 I Unity   : eyeTextureIndex : 4
10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.876  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.876  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.876  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.876  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.876  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.880  8288  8315 I Unity   : eyeTextureIndex : 5
10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.880  8288  8315 I Unity   : Pvr_UnitySDKRender:ConfigureEyeBuffer(Int32, Vector2) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:261)
10-06 19:05:23.880  8288  8315 I Unity   : Pvr_UnitySDKRender:CreateEyeBuffer() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:280)
10-06 19:05:23.880  8288  8315 I Unity   : Pvr_UnitySDKRender:InitRenderAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:232)
10-06 19:05:23.880  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:59)
10-06 19:05:23.880  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\
10-06 19:05:23.883  8288  8315 I Unity   : Init Render Ability Success!
10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.883  8288  8315 I Unity   : Pvr_UnitySDKRender:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:61)
10-06 19:05:23.883  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:25)
10-06 19:05:23.883  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:654)
10-06 19:05:23.883  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.883  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.c
10-06 19:05:23.885  8288  8315 I Unity   : pvr_UnitySDKSensor init
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.885  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:663)
10-06 19:05:23.885  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.885  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineOb
10-06 19:05:23.893  8288  8315 W Unity   : This platform does NOT support 6 Dof !
10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.Debug:LogWarning(Object)
10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKSensor:InitUnitySDK6DofSensor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:96)
10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKSensor:Init() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:47)
10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKSensor:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:8)
10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:665)
10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
10-06 19:05:23.895  8288  8315 I UnityPlugin: Pvr_InitSensor_ ENTER
10-06 19:05:23.896  8288  8315 I UnityPlugin: Pvr_InitSensor_ EXIT
10-06 19:05:23.897  8288  8315 I UnityPlugin: Pvr_StartSensor_ enter
10-06 19:05:23.897  8288  8315 I UnityPlugin: Pvr_StartSensor_ exit
10-06 19:05:23.905  8288  8315 I Unity   : Start home key   Receiver
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.905  8288  8315 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StartHomeKeyReceiver(String) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:727)
10-06 19:05:23.905  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInitCoreAbility() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:667)
10-06 19:05:23.905  8288  8315 I Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:638)
10-06 19:05:23.905  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:919)
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Object:Internal_Instantia
10-06 19:05:23.907  8288  8315 I Unity   : SDK Init success.
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.907  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:921)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Object, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:202)
10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Instantiate(Player, Vector3, Quaternion) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/UnityEngineObject.bindings.cs:276)
10-06 19:05:23.907  8288  8315 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:76)
10-06 19:05:23.907  8288  8315 I Unity   :
10-06 19:05:23.907  8288  8315 I Unity   : (Filename
10-06 19:05:23.930  8288  8315 I Unity   : PlayerService: Setting up Pico HMD.
10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.930  8288  8315 I Unity   : CXR.PlayerService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\_Root\Scripts\Services\PlayerService.cs:82)
10-06 19:05:23.930  8288  8315 I Unity   :
10-06 19:05:23.930  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:23.930  8288  8315 I Unity   :
10-06 19:05:23.931  8288  8315 I Unity   : VideoService: Instantiating video player.
10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.931  8288  8315 I Unity   : VideoService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:43)
10-06 19:05:23.931  8288  8315 I Unity   :
10-06 19:05:23.931  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:23.931  8288  8315 I Unity   :
10-06 19:05:23.962  8288  8315 I Unity   : ###################### Attempting a UnityWebRequest for asset bundle: videos, at path: jar:file:///data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk!/assets/videos
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:23.962  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:98)
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:23.962  8288  8315 I Unity   : VideoService:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs
10-06 19:05:24.142  8288  8315 I Unity   : ####################### Successfully got videoService.
10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.142  8288  8315 I Unity   : PlayVideoTest:Start() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:43)
10-06 19:05:24.142  8288  8315 I Unity   :
10-06 19:05:24.142  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.142  8288  8315 I Unity   :
10-06 19:05:24.146  8288  8363 D Unity   : Error setting CPU thread affinity, errno=3, tid=8364
10-06 19:05:24.151  8288  8315 I Unity   : InitRenderThreadRoutine begin
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.151  8288  8315 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1032)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:24.151  8288  8315 I Unity   : <Start>d__159:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1026)
10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/u
10-06 19:05:24.180  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.180  8288  8315 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:05:24.180  8288  8315 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:05:24.180  8288  8315 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:05:24.180  8288  8315 I Unity   :
10-06 19:05:24.180  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.180  8288  8315 I Unity   :
10-06 19:05:24.209  8288  8315 I UnityPlugin: FOVEA up.focused == false!
10-06 19:05:24.233  8288  8315 I UnityPlugin: FOVEA up.focused == false!
10-06 19:05:24.274  8288  8315 I Unity   : +++++++++++++++++++++++++++++++0
10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.274  8288  8315 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.274  8288  8315 I Unity   :
10-06 19:05:24.274  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.274  8288  8315 I Unity   :
10-06 19:05:24.317  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.317  8288  8315 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:05:24.317  8288  8315 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:05:24.317  8288  8315 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:05:24.317  8288  8315 I Unity   :
10-06 19:05:24.317  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.317  8288  8315 I Unity   :
10-06 19:05:24.318  8288  8315 I UnityPlugin: FOVEA up.focused == false!
10-06 19:05:24.336  8288  8315 I UnityPlugin: FOVEA up.focused == false!
10-06 19:05:24.357  8288  8315 I Unity   : +++++++++++++++++++++++++++++++1
10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.357  8288  8315 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.357  8288  8315 I Unity   :
10-06 19:05:24.357  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.357  8288  8315 I Unity   :
10-06 19:05:24.362  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.362  8288  8315 I Unity   : Pvr_UnitySDKSensor:GetUnitySDKSensorState() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:247)
10-06 19:05:24.362  8288  8315 I Unity   : Pvr_UnitySDKSensor:SensorUpdate() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Sensor\Pvr_UnitySDKSensor.cs:54)
10-06 19:05:24.362  8288  8315 I Unity   : Pvr_UnitySDKManager:Update() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1071)
10-06 19:05:24.362  8288  8315 I Unity   :
10-06 19:05:24.362  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.362  8288  8315 I Unity   :
10-06 19:05:24.364  8288  8315 I Unity   : InitRenderThreadRoutine after a wait
10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.364  8288  8315 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1037)
10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.364  8288  8315 I Unity   :
10-06 19:05:24.364  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.364  8288  8315 I Unity   :
10-06 19:05:24.367  8288  8315 I UnityPlugin: EVENT_INIT_RENDERTHREAD, not VR9
10-06 19:05:24.367  8288  8315 I UnityPlugin: PVR_InitRenderThread()
10-06 19:05:24.368  8288  8315 I UnityPlugin: FOVEA Checking for glTextureFoveationParametersEXT support...
10-06 19:05:24.368  8288  8315 I UnityPlugin: FOVEA glTextureFoveationParametersQCOM SUPPORTED
10-06 19:05:24.368  8288  8315 I UnityPlugin: Mode Parms CpuLevel 2 GpuLevel 2
10-06 19:05:24.368  8288  8315 I UnityPlugin: ENABLE_CHROMATIC    true
10-06 19:05:24.368  8288  8315 I UnityPlugin: PVR_Resume()
10-06 19:05:24.413  8288  8315 I Unity   : IssueRenderThread end
10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.413  8288  8315 I Unity   : Pvr_UnitySDKRender:IssueRenderThread() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKRender.cs:85)
10-06 19:05:24.413  8288  8315 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1042)
10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.413  8288  8315 I Unity   :
10-06 19:05:24.413  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.413  8288  8315 I Unity   :
10-06 19:05:24.414  8288  8315 I Unity   : InitRenderThreadRoutine end
10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.414  8288  8315 I Unity   : <InitRenderThreadRoutine>d__160:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1049)
10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.414  8288  8315 I Unity   :
10-06 19:05:24.414  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.414  8288  8315 I Unity   :
10-06 19:05:24.455  8288  8315 I Unity   : +++++++++++++++++++++++++++++++2
10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:24.455  8288  8315 I Unity   : <EndOfFrame>d__29:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Render\Pvr_UnitySDKEyeManager.cs:278)
10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:24.455  8288  8315 I Unity   :
10-06 19:05:24.455  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:24.455  8288  8315 I Unity   :
10-06 19:05:24.455  8288  8315 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:05:24.807  8288  8288 I UnityPlayerNativeActivityPico: remove Imageview 1
10-06 19:05:24.808  8288  8288 E UnityPlayerNativeActivityPico: msg 1 received, but animation is null.
10-06 19:05:26.787  8288  8315 I Unity   : ###################### Successfully loaded Asset Bundle: videos
10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.787  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:118)
10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.787  8288  8315 I Unity   :
10-06 19:05:26.787  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.787  8288  8315 I Unity   :
10-06 19:05:26.788  8288  8315 I Unity   : ####################### switch statement for assent bundle: videos
10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.788  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:121)
10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.788  8288  8315 I Unity   :
10-06 19:05:26.788  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.788  8288  8315 I Unity   :
10-06 19:05:26.789  8288  8315 I Unity   : ####################### case: videos
10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.789  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:126)
10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.789  8288  8315 I Unity   :
10-06 19:05:26.789  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.789  8288  8315 I Unity   :
10-06 19:05:26.793  8288  8315 I Unity   : Got the following 2 names from asset bundle: videos
10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.793  8288  8315 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:151)
10-06 19:05:26.793  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.793  8288  8315 I Unity   :
10-06 19:05:26.793  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.793  8288  8315 I Unity   :
10-06 19:05:26.796  8288  8315 I Unity   : - assets/videos/legend of maui_cc_7_18.mp4
10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.796  8288  8315 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:155)
10-06 19:05:26.796  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.796  8288  8315 I Unity   :
10-06 19:05:26.796  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.796  8288  8315 I Unity   :
10-06 19:05:26.797  8288  8315 I Unity   : - assets/videos/moma_loves_mud.mp4
10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.797  8288  8315 I Unity   : VideoService:GetAssetNames(AssetBundle, String[]&) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:155)
10-06 19:05:26.797  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:128)
10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.797  8288  8315 I Unity   :
10-06 19:05:26.797  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.797  8288  8315 I Unity   :
10-06 19:05:26.799  8288  8315 I Unity   : ####################### LoadVideo called.
10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.799  8288  8315 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:49)
10-06 19:05:26.799  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:133)
10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.799  8288  8315 I Unity   :
10-06 19:05:26.799  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:26.799  8288  8315 I Unity   :
10-06 19:05:26.802  8288  8315 I Unity   : ####################### LoadVideo called...
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.802  8288  8315 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:162)
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:26.802  8288  8315 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:05:26.802  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:133)
10-06 19:05:26.802  8288  8315 I Unity   : Uni
10-06 19:05:26.805  8288  8315 I Unity   : Attempting to load video: assets/videos/legend of maui_cc_7_18.mp4 from asset bundle: videos
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.805  8288  8315 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:177)
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:26.805  8288  8315 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:05:26.805  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject
10-06 19:05:26.810  8288  8315 I Unity   : ######################## Successfully loaded video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.810  8288  8315 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:187)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:26.810  8288  8315 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:05:26.810  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_U
10-06 19:05:26.812  8288  8315 I Unity   : ####################### PlayVideo called.
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.812  8288  8315 I Unity   : PlayVideoTest:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:55)
10-06 19:05:26.812  8288  8315 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:188)
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/MonoBehaviour.bindings.cs:91)
10-06 19:05:26.812  8288  8315 I Unity   : PlayVideoTest:LoadVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:50)
10-06 19:05:26.812  8288  8315 I Unity   : <LoadAssetBundle>d__25
10-06 19:05:26.817  8288  8315 I Unity   : ###################### Playing video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:26.817  8288  8315 I Unity   : VideoService:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:245)
10-06 19:05:26.817  8288  8315 I Unity   : PlayVideoTest:PlayVideo() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:56)
10-06 19:05:26.817  8288  8315 I Unity   : <LoadVideo>d__27:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\Services\VideoService.cs:188)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Scripting/Coroutines.cs:17)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Script
10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia::OpenExtractor could not translate archive:/CAB-065dd18caae01e46bb402481ee5f38e2/CAB-065dd18caae01e46bb402481ee5f38e2.resource to local file. Make sure file exists, is on disk (not in memory) and not compressed.
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
10-06 19:05:26.867  8288  8337 W Unity   :
10-06 19:05:47.909  8288  8288 I UnityPlayerNativeActivityPico: onPause set cpu 0
10-06 19:05:47.909  8288  8288 I UnityPlugin: PVR_SetCpuLevel  level 0
10-06 19:05:47.963  8288  8288 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
10-06 19:05:47.963  8288  8288 I Unity   : onPause
10-06 19:05:47.972  8288  8315 I Unity   : ####################### OnApplicationPause: True
10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:47.972  8288  8315 I Unity   : PlayVideoTest:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:73)
10-06 19:05:47.972  8288  8315 I Unity   :
10-06 19:05:47.972  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:47.972  8288  8315 I Unity   :
10-06 19:05:47.974  8288  8315 I Unity   : OnApplicationPause-------------------------true
10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:47.974  8288  8315 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1345)
10-06 19:05:47.974  8288  8315 I Unity   :
10-06 19:05:47.974  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:47.974  8288  8315 I Unity   :
10-06 19:05:47.980  8288  8315 I Unity   : tclogpp Avtivity Pause state is ----- True
10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:47.980  8288  8315 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1350)
10-06 19:05:47.980  8288  8315 I Unity   :
10-06 19:05:47.980  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:47.980  8288  8315 I Unity   :
10-06 19:05:47.985  8288  8315 I Unity   : Stop home key   Receiver
10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:47.985  8288  8315 I Unity   : Pvr_UnitySDKAPI.System:UPvr_StopHomeKeyReceiver() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\API\Pvr_UnitySDKAPI.cs:748)
10-06 19:05:47.985  8288  8315 I Unity   : Pvr_UnitySDKManager:OnPause() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1335)
10-06 19:05:47.985  8288  8315 I Unity   : Pvr_UnitySDKManager:OnApplicationPause(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1361)
10-06 19:05:47.985  8288  8315 I Unity   :
10-06 19:05:47.985  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:47.985  8288  8315 I Unity   :
10-06 19:05:47.986  8288  8315 I UnityPlugin: EVENT_PAUSE, not VR9
10-06 19:05:47.986  8288  8315 I UnityPlugin: PVR_Pause()
10-06 19:05:48.012  8288  8315 I UnityPlugin: Pvr_StopSensor_ enter
10-06 19:05:48.012  8288  8315 I UnityPlugin: Pvr_StopSensor_ exit
10-06 19:05:48.014  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
10-06 19:05:48.015  8288  8288 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
10-06 19:05:48.023  8288  8288 I Unity   : windowFocusChanged: false
10-06 19:05:48.025  8288  8315 I Unity   : ####################### OnApplicationFocus, hasFocus: False
10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:48.025  8288  8315 I Unity   : PlayVideoTest:OnApplicationFocus(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Scripts\PlayVideoTest.cs:67)
10-06 19:05:48.025  8288  8315 I Unity   :
10-06 19:05:48.025  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:48.025  8288  8315 I Unity   :
10-06 19:05:48.027  8288  8315 I Unity   : OnApplicationFocus-------------------------false
10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
10-06 19:05:48.027  8288  8315 I Unity   : Pvr_UnitySDKManager:OnApplicationFocus(Boolean) (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobileSDK\Pvr_UnitySDK\Pvr_UnitySDKManager.cs:1374)
10-06 19:05:48.027  8288  8315 I Unity   :
10-06 19:05:48.027  8288  8315 I Unity   : (Filename: D Line: 0)
10-06 19:05:48.027  8288  8315 I Unity   :
10-06 19:05:48.035  2908  2908 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
10-06 19:05:48.069  2908  2908 I Shortcut: Home package is com.picovrtob.vrlauncher, activity is com.unity3d.player.UnityPlayerNativeActivityPico
10-06 19:05:48.069  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,342
10-06 19:05:48.069  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
10-06 19:05:48.111  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:05:48.146  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
10-06 19:05:48.181  8288  8315 D Unity   : SetWindow 0 0x0
10-06 19:05:53.154  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
10-06 19:05:54.301  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
10-06 19:05:56.663   918  3628 I ActivityManager:   Force finishing activity ActivityRecord{ddb061a u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t342}

Found a solution, but will have to wait to post code later. For now, the solution involved using AssetBundle.LoadFromFileAsync instead of UnityWebRequestAssetBundle.GetAssetBundle.

1 Like

Can you post the solution please? @Brad-Newman

Can you post the solution please? @Brad-Newman

IEnumerator LoadAssetBundle(string nameOfAssetBundle) {
        var bundleLoadRequest = AssetBundle.LoadFromFileAsync(Path.Combine("pathToAssetBundle", nameOfAssetBundle));
        yield return bundleLoadRequest;

        var myLoadedAssetBundle = bundleLoadRequest.assetBundle;
        if (myLoadedAssetBundle == null)
        {
            Debug.Log("Failed to load AssetBundle!");
        }
    }

in case if you need code to load asset bundle from Assets/StreamingAssets

1 Like