Search Unity

Playing video from asset bundles on Android

Discussion in 'Android' started by Brad-Newman, Oct 6, 2019.

  1. Brad-Newman

    Brad-Newman

    Joined:
    Feb 7, 2013
    Posts:
    185
    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?:
    Code (CSharp):
    1.  
    2. videoClip = videosAssetBundle.LoadAsset<VideoClip>(videoNames[index]);
    3.  
    Anybody have any ideas?

    I generate my asset bundle like so:

    Code (CSharp):
    1. using UnityEditor;
    2. using System.IO;
    3.  
    4. public class CreateAssetBundles
    5. {
    6.     [MenuItem("Assets/Build AssetBundles")]
    7.     static void BuildAllAssetBundles()
    8.     {
    9.         string dirForAndroidAssetBundles = "Assets/StreamingAssets";
    10.  
    11.         if (!Directory.Exists(dirForAndroidAssetBundles))
    12.         {
    13.             Directory.CreateDirectory(dirForAndroidAssetBundles);
    14.         }
    15.  
    16.         BuildPipeline.BuildAssetBundles(dirForAndroidAssetBundles, BuildAssetBundleOptions.UncompressedAssetBundle, BuildTarget.Android);
    17.      
    18.     }
    19. }
    And I load the asset bundle and playback the video like so:

    Code (CSharp):
    1.  
    2. using System.Collections;
    3. using UnityEngine;
    4. using UnityEngine.Video;
    5. using System.IO;
    6. using UnityEngine.Networking;
    7.  
    8. public class VideoService : MonoBehaviour
    9. {
    10.     //Video Player
    11.     [SerializeField] private VideoPlayer videoPlayerPrefab = default;
    12.     public VideoPlayer VideoPlayer { get; private set; }
    13.     public delegate void VideoPlayerInstantiated();
    14.     public event VideoPlayerInstantiated OnVideoPlayerInstantiated;
    15.     private VideoClip videoClip;
    16.  
    17.     //Videos
    18.     AssetBundle videosAssetBundle;
    19.     private string[] videoNames;
    20.     public delegate void VideoAssetBundleLoadedEvent();
    21.     public event VideoAssetBundleLoadedEvent OnVideoAssetBundleLoaded;
    22.     public delegate void VideoLoadedEvent();
    23.     public event VideoLoadedEvent OnVideoLoaded;
    24.  
    25.     Coroutine loadVideosAssetBundleCoroutine;
    26.  
    27.     //Thumbnails
    28.     AssetBundle thumbnailsAssetBundle;
    29.     private string[] thumbnailNames;
    30.     Coroutine loadThumbnailsAssetBundleCoroutine;
    31.  
    32.     private void Start()
    33.     {
    34.         if (VideoPlayer == null)
    35.         {
    36.             Debug.Log("VideoService: Instantiating video player.");
    37.             VideoPlayer = Instantiate(videoPlayerPrefab, Vector3.zero, Quaternion.identity);
    38.             VideoPlayer.targetTexture.DiscardContents();
    39.             OnVideoPlayerInstantiated?.Invoke();
    40.         }
    41.  
    42.         loadVideosAssetBundleCoroutine = StartCoroutine(LoadAssetBundle("videos"));
    43.     }
    44.  
    45.     IEnumerator LoadAssetBundle(string assetBundleName)
    46.     {
    47.         //Web Request
    48.         string path = Path.Combine(Application.streamingAssetsPath, assetBundleName);
    49.  
    50.         Debug.Log("Attempting a UnityWebRequest for asset bundle: " + assetBundleName + ", at path: " + path);
    51.         UnityWebRequest request = UnityWebRequestAssetBundle.GetAssetBundle(path);
    52.         yield return request.SendWebRequest();
    53.  
    54.         if (!string.IsNullOrEmpty(request.error))
    55.         {
    56.             Debug.LogError(request.error);
    57.             yield break;
    58.         }
    59.  
    60.         //Download Handler
    61.         AssetBundle assetBundle = DownloadHandlerAssetBundle.GetContent(request);
    62.      
    63.         if(assetBundle == null)
    64.         {
    65.             Debug.LogError("Asset Bundle: " + assetBundleName + " is null.");
    66.             yield break;
    67.         }
    68.         else
    69.         {
    70.             Debug.Log("Successfully loaded Asset Bundle: " + assetBundleName);
    71.         }
    72.  
    73.         Debug.Log("switch statement for assent bundle: " + assetBundleName);
    74.      
    75.         switch (assetBundleName)
    76.         {
    77.             case "videos":
    78.                 Debug.Log("case: videos");
    79.                 videosAssetBundle = assetBundle;
    80.                 GetAssetNames(videosAssetBundle, out videoNames);
    81.                 OnVideoAssetBundleLoaded?.Invoke();
    82.                 break;
    83.             case "thumbnails":
    84.                 Debug.Log("case: thumbnails");
    85.                 thumbnailsAssetBundle = assetBundle;
    86.                 GetAssetNames(thumbnailsAssetBundle, out thumbnailNames);
    87.                 break;
    88.             default:
    89.                 break;
    90.         }
    91.     }
    92.  
    93.     private void GetAssetNames(AssetBundle assetBundle, out string[] namesArray)
    94.     {
    95.         namesArray = assetBundle.GetAllAssetNames();
    96.  
    97.         if (namesArray.Length > 0)
    98.         {
    99.             Debug.Log("Got the following " + namesArray.Length + " names from asset bundle: " + assetBundle.name);
    100.  
    101.             foreach (string name in namesArray)
    102.             {
    103.                 Debug.Log("- " + name);
    104.             }
    105.         }
    106.     }
    107.  
    108.     public IEnumerator LoadVideo(int index)
    109.     {
    110.         Debug.Log("LoadVideo called...");
    111.  
    112.         if (videosAssetBundle == null)
    113.         {
    114.             Debug.LogError(videosAssetBundle + " is null. Failed to load video: " + videoNames[index]);
    115.             yield break;
    116.         }
    117.         else
    118.         {        
    119.             Debug.Log("Attempting to load video: " + videoNames[index] + " from asset bundle: " + videosAssetBundle.name);
    120.             videoClip = videosAssetBundle.LoadAsset<VideoClip>(videoNames[index]);
    121.              
    122.             if(videoClip == null)
    123.             {
    124.                 Debug.LogError("videoClip is null.");
    125.                 yield break;
    126.             }
    127.             else
    128.             {
    129.                 Debug.Log("Successfully loaded video clip: " + videoClip);
    130.                 OnVideoLoaded?.Invoke();
    131.             }
    132.  
    133.             yield return null;
    134.         }
    135.     }
    136.  
    137.     public void PlayVideo()
    138.     {
    139.         if (VideoPlayer == null)
    140.         {
    141.             Debug.LogError("VideoPlayer is null.");
    142.         }
    143.         else
    144.         {
    145.             if (videoClip == null)
    146.             {
    147.                 Debug.LogError("videoClip is null.");
    148.                 return;
    149.             }
    150.             else
    151.             {
    152.                 if(VideoPlayer.clip != videoClip)
    153.                 {
    154.                     VideoPlayer.clip = videoClip;
    155.                 }
    156.              
    157.                 Debug.Log("Playing video clip: " + videoClip);
    158.                 VideoPlayer.Play();
    159.             }
    160.         }
    161.     }
    162.  
    163.     public void PauseVideo()
    164.     {
    165.         if (VideoPlayer == null)
    166.         {
    167.             Debug.LogError("VideoPlayer is null.");
    168.         }
    169.         else
    170.         {
    171.             VideoPlayer.Pause();
    172.         }
    173.     }
    174.  
    175.     private void OnDisable()
    176.     {
    177.         if (loadVideosAssetBundleCoroutine != null)
    178.         {
    179.             StopCoroutine(loadVideosAssetBundleCoroutine);
    180.             loadVideosAssetBundleCoroutine = null;
    181.         }
    182.  
    183.         if (loadThumbnailsAssetBundleCoroutine != null)
    184.         {
    185.             StopCoroutine(loadThumbnailsAssetBundleCoroutine);
    186.             loadThumbnailsAssetBundleCoroutine = null;
    187.         }
    188.     }
    189.  
    190.     private void OnApplicationPause(bool pause)
    191.     {
    192.      
    193.     }
    194.  
    195.     private void OnApplicationQuit()
    196.     {
    197.         VideoPlayer.targetTexture?.DiscardContents();
    198.         VideoPlayer.targetTexture?.Release();
    199.  
    200.         videosAssetBundle?.Unload(false);
    201.         thumbnailsAssetBundle?.Unload(false);
    202.     }
    203. }
    204.  
    205.  
     
  2. Brad-Newman

    Brad-Newman

    Joined:
    Feb 7, 2013
    Posts:
    185
    Just captured the logcat:

    Line 1391 looks like some sort of error:
    Code (CSharp):
    1. 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.
    2. 10-06 19:05:26.867  8288  8337 W Unity   :
    3. 10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
    4. 10-06 19:05:26.867  8288  8337 W Unity   :
    5. 10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
    6. 10-06 19:05:26.867  8288  8337 W Unity   :
    7. 10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
    8. 10-06 19:05:26.867  8288  8337 W Unity   :
    FULL LOGCAT:
    Code (CSharp):
    1. Microsoft Windows [Version 10.0.17763.775]
    2. (c) 2018 Microsoft Corporation. All rights reserved.
    3.  
    4. C:\Users\Brad>adb logcat | findstr -i unity
    5. 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
    6. 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
    7. 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
    8. 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
    9. 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. 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
    11. 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
    12. 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
    13. 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
    14. 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
    15. 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
    16. 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 }
    17. 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 }
    18. 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 }
    19. 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 }
    20. 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 }
    21. 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
    22. 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
    23. 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
    24. 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 }
    25. 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 }
    26. 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
    27. 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
    28. 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 }
    29. 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 }
    30. 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
    31. 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
    32. 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
    33. 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
    34. 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
    35. 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
    36. 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
    37. 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
    38. 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
    39. 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
    40. 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
    41. 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
    42. 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
    43. 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
    44. 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
    45. 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
    46. 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
    47. 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
    48. 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
    49. 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 }
    50. 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 }
    51. 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
    52. 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
    53. 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
    54. 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 }
    55. 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 }
    56. 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
    57. 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
    58. 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
    59. 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
    60. 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 }
    61. 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 }
    62. 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 }
    63. 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 }
    64. 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 }
    65. 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 }
    66. 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 }
    67. 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 }
    68. 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 }
    69. 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 }
    70. 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
    71. 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
    72. 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
    73. 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
    74. 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
    75. 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
    76. 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
    77. 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
    78. 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
    79. 10-06 17:22:39.238  4497  4730 E AndroidRuntime: FATAL EXCEPTION: UnityMain
    80. 10-06 17:22:39.238  4497  4730 E AndroidRuntime: pid: 4497, tid: 4730, name: UnityMain  >>> com.picovrtob.vrlauncher <<<
    81. 10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.scripting_array_new(ScriptingClassPtr, unsigned int, unsigned int)(scripting_array_new:52)
    82. 10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.AndroidDisplayManager::Update()(Update:68)
    83. 10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.AndroidGraphics::ApplyPendingWindowChanges()(ApplyPendingWindowChanges:464)
    84. 10-06 17:22:39.238  4497  4730 E AndroidRuntime:        at libunity.nativeFocusChanged(_JNIEnv*, _jobject*, bool)(nativeFocusChanged:76)
    85. 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
    86. 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
    87. 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
    88. 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
    89. 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 }
    90. 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 }
    91. 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
    92. 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
    93. 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
    94. 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
    95. 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 }
    96. 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 }
    97. 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 }
    98. 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 }
    99. 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 }
    100. 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 }
    101. 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 }
    102. 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 }
    103. 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 }
    104. 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 }
    105. 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 }
    106. 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 }
    107. 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 }
    108. 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 }
    109. 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 }
    110. 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 }
    111. 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 }
    112. 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 }
    113. 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 }
    114. 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 }
    115. 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 }
    116. 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 }
    117. 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 }
    118. 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 }
    119. 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 }
    120. 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 }
    121. 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 }
    122. 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 }
    123. 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 }
    124. 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 }
    125. 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 }
    126. 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 }
    127. 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 }
    128. 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 }
    129. 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 }
    130. 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 }
    131. 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 }
    132. 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 }
    133. 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 }
    134. 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 }
    135. 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 }
    136. 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 }
    137. 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 }
    138. 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 }
    139. 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 }
    140. 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 }
    141. 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 }
    142. 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 }
    143. 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 }
    144. 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 }
    145. 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 }
    146. 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 }
    147. 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 }
    148. 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 }
    149. 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 }
    150. 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 }
    151. 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 }
    152. 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 }
    153. 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 }
    154. 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 }
    155. 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 }
    156. 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 }
    157. 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 }
    158. 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 }
    159. 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 }
    160. 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 }
    161. 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 }
    162. 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 }
    163. 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 }
    164. 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 }
    165. 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 }
    166. 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 }
    167. 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 }
    168. 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 }
    169. 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 }
    170. 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 }
    171. 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 }
    172. 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 }
    173. 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 }
    174. 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 }
    175. 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
    176. 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
    177. 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
    178. 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
    179. 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
    180. 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
    181. 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
    182. 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
    183. 10-06 17:52:00.661  5346  5644 E AndroidRuntime: FATAL EXCEPTION: UnityMain
    184. 10-06 17:52:00.661  5346  5644 E AndroidRuntime: pid: 5346, tid: 5644, name: UnityMain  >>> com.picovrtob.vrlauncher <<<
    185. 10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.scripting_array_new(ScriptingClassPtr, unsigned int, unsigned int)(scripting_array_new:52)
    186. 10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.AndroidDisplayManager::Update()(Update:68)
    187. 10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.AndroidGraphics::ApplyPendingWindowChanges()(ApplyPendingWindowChanges:464)
    188. 10-06 17:52:00.661  5346  5644 E AndroidRuntime:        at libunity.nativeFocusChanged(_JNIEnv*, _jobject*, bool)(nativeFocusChanged:76)
    189. 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
    190. 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
    191. 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 }
    192. 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 }
    193. 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
    194. 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
    195. 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 }
    196. 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 }
    197. 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
    198. 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
    199. 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 }
    200. 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 }
    201. 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
    202. 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
    203. 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
    204. 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
    205. 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 }
    206. 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 }
    207. 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 }
    208. 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 }
    209. 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 }
    210. 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
    211. 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
    212. 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
    213. 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
    214. 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
    215. 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
    216. 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
    217. 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
    218. 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
    219. 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
    220. 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 }
    221. 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 }
    222. 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 }
    223. 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
    224. 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
    225. 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 }
    226. 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 }
    227. 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
    228. 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
    229. 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
    230. 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
    231. 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
    232. 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
    233. 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 }
    234. 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 }
    235. 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 }
    236. 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 }
    237. 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 }
    238. 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 }
    239. 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
    240. 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
    241. 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
    242. 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
    243. 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
    244. 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
    245. 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 }
    246. 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 }
    247. 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 }
    248. 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 }
    249. 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 }
    250. 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 }
    251. 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 }
    252. 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
    253. 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
    254. 10-06 18:38:11.262  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
    255. 10-06 18:38:11.289  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
    256. 10-06 18:38:13.176  2720  2720 D HbClientReceiver: connect unityObjectName == null
    257. 10-06 18:38:15.148  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
    258. 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
    259. 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
    260. 10-06 18:38:26.182  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
    261. 10-06 18:39:49.586  2720  2720 D HbClientReceiver: disconnect unityObjectName == null
    262. 10-06 19:02:04.630  2720  2720 D HbClientReceiver: DeviceMac unityObjectName == null
    263. 10-06 19:02:06.355  2720  2720 D HbClientReceiver: connect unityObjectName == null
    264. 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
    265. 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
    266. 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
    267. 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
    268. 10-06 19:02:24.438  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,338
    269. 10-06 19:02:24.438  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
    270. 10-06 19:02:24.471  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
    271. 10-06 19:02:24.523  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
    272. 10-06 19:02:32.313   918  2000 I ActivityManager:   Force finishing activity ActivityRecord{661feaf u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t338}
    273. 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
    274. 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
    275. 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
    276. 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
    277. 10-06 19:03:09.974  8095  8122 W Unity   : This platform does NOT support 6 Dof !
    278. 10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    279. 10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    280. 10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.Logger:Log(LogType, Object)
    281. 10-06 19:03:09.974  8095  8122 W Unity   : UnityEngine.Debug:LogWarning(Object)
    282. 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)
    283. 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)
    284. 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)
    285. 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)
    286. 10-06 19:03:09.974  8095  8122 W Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
    287. 10-06 19:03:09.976  8095  8122 I UnityPlugin: Pvr_InitSensor_ ENTER
    288. 10-06 19:03:09.976  8095  8122 I UnityPlugin: Pvr_InitSensor_ EXIT
    289. 10-06 19:03:09.977  8095  8122 I UnityPlugin: Pvr_StartSensor_ enter
    290. 10-06 19:03:09.977  8095  8122 I UnityPlugin: Pvr_StartSensor_ exit
    291. 10-06 19:03:09.985  8095  8122 I Unity   : Start home key   Receiver
    292. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    293. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    294. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    295. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    296. 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)
    297. 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)
    298. 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)
    299. 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)
    300. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    301. 10-06 19:03:09.985  8095  8122 I Unity   : UnityEngine.Object:Internal_Instantia
    302. 10-06 19:03:09.987  8095  8122 I Unity   : SDK Init success.
    303. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    304. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    305. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    306. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    307. 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)
    308. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    309. 10-06 19:03:09.987  8095  8122 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    310. 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)
    311. 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)
    312. 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)
    313. 10-06 19:03:09.987  8095  8122 I Unity   :
    314. 10-06 19:03:09.987  8095  8122 I Unity   : (Filename
    315. 10-06 19:03:10.009  8095  8122 I Unity   : PlayerService: Setting up Pico HMD.
    316. 10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    317. 10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    318. 10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    319. 10-06 19:03:10.009  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    320. 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)
    321. 10-06 19:03:10.009  8095  8122 I Unity   :
    322. 10-06 19:03:10.009  8095  8122 I Unity   : (Filename: D Line: 0)
    323. 10-06 19:03:10.009  8095  8122 I Unity   :
    324. 10-06 19:03:10.011  8095  8122 I Unity   : VideoService: Instantiating video player.
    325. 10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    326. 10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    327. 10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    328. 10-06 19:03:10.011  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    329. 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)
    330. 10-06 19:03:10.011  8095  8122 I Unity   :
    331. 10-06 19:03:10.011  8095  8122 I Unity   : (Filename: D Line: 0)
    332. 10-06 19:03:10.011  8095  8122 I Unity   :
    333. 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
    334. 10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    335. 10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    336. 10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    337. 10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    338. 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)
    339. 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)
    340. 10-06 19:03:10.044  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    341. 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)
    342. 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
    343. 10-06 19:03:10.224  8095  8122 I Unity   : ####################### Successfully got videoService.
    344. 10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    345. 10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    346. 10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    347. 10-06 19:03:10.224  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    348. 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)
    349. 10-06 19:03:10.224  8095  8122 I Unity   :
    350. 10-06 19:03:10.224  8095  8122 I Unity   : (Filename: D Line: 0)
    351. 10-06 19:03:10.224  8095  8122 I Unity   :
    352. 10-06 19:03:10.232  8095  8122 I Unity   : InitRenderThreadRoutine begin
    353. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    354. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    355. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    356. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    357. 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)
    358. 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)
    359. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    360. 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)
    361. 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)
    362. 10-06 19:03:10.232  8095  8122 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/u
    363. 10-06 19:03:10.264  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    364. 10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    365. 10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    366. 10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    367. 10-06 19:03:10.264  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    368. 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)
    369. 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)
    370. 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)
    371. 10-06 19:03:10.264  8095  8122 I Unity   :
    372. 10-06 19:03:10.264  8095  8122 I Unity   : (Filename: D Line: 0)
    373. 10-06 19:03:10.264  8095  8122 I Unity   :
    374. 10-06 19:03:10.294  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    375. 10-06 19:03:10.319  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    376. 10-06 19:03:10.360  8095  8122 I Unity   : +++++++++++++++++++++++++++++++0
    377. 10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    378. 10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    379. 10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    380. 10-06 19:03:10.360  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    381. 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)
    382. 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)
    383. 10-06 19:03:10.360  8095  8122 I Unity   :
    384. 10-06 19:03:10.360  8095  8122 I Unity   : (Filename: D Line: 0)
    385. 10-06 19:03:10.360  8095  8122 I Unity   :
    386. 10-06 19:03:10.405  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    387. 10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    388. 10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    389. 10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    390. 10-06 19:03:10.405  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    391. 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)
    392. 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)
    393. 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)
    394. 10-06 19:03:10.405  8095  8122 I Unity   :
    395. 10-06 19:03:10.405  8095  8122 I Unity   : (Filename: D Line: 0)
    396. 10-06 19:03:10.405  8095  8122 I Unity   :
    397. 10-06 19:03:10.406  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    398. 10-06 19:03:10.424  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    399. 10-06 19:03:10.445  8095  8122 I Unity   : +++++++++++++++++++++++++++++++1
    400. 10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    401. 10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    402. 10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    403. 10-06 19:03:10.445  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    404. 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)
    405. 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)
    406. 10-06 19:03:10.445  8095  8122 I Unity   :
    407. 10-06 19:03:10.445  8095  8122 I Unity   : (Filename: D Line: 0)
    408. 10-06 19:03:10.445  8095  8122 I Unity   :
    409. 10-06 19:03:10.451  8095  8122 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    410. 10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    411. 10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    412. 10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    413. 10-06 19:03:10.451  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    414. 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)
    415. 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)
    416. 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)
    417. 10-06 19:03:10.451  8095  8122 I Unity   :
    418. 10-06 19:03:10.451  8095  8122 I Unity   : (Filename: D Line: 0)
    419. 10-06 19:03:10.451  8095  8122 I Unity   :
    420. 10-06 19:03:10.453  8095  8122 I Unity   : InitRenderThreadRoutine after a wait
    421. 10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    422. 10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    423. 10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    424. 10-06 19:03:10.453  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    425. 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)
    426. 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)
    427. 10-06 19:03:10.453  8095  8122 I Unity   :
    428. 10-06 19:03:10.453  8095  8122 I Unity   : (Filename: D Line: 0)
    429. 10-06 19:03:10.453  8095  8122 I Unity   :
    430. 10-06 19:03:10.456  8095  8122 I UnityPlugin: EVENT_INIT_RENDERTHREAD, not VR9
    431. 10-06 19:03:10.457  8095  8122 I UnityPlugin: PVR_InitRenderThread()
    432. 10-06 19:03:10.458  8095  8122 I UnityPlugin: FOVEA Checking for glTextureFoveationParametersEXT support...
    433. 10-06 19:03:10.458  8095  8122 I UnityPlugin: FOVEA glTextureFoveationParametersQCOM SUPPORTED
    434. 10-06 19:03:10.458  8095  8122 I UnityPlugin: Mode Parms CpuLevel 2 GpuLevel 2
    435. 10-06 19:03:10.458  8095  8122 I UnityPlugin: ENABLE_CHROMATIC    true
    436. 10-06 19:03:10.458  8095  8122 I UnityPlugin: PVR_Resume()
    437. 10-06 19:03:10.503  8095  8122 I Unity   : IssueRenderThread end
    438. 10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    439. 10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    440. 10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    441. 10-06 19:03:10.503  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    442. 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)
    443. 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)
    444. 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)
    445. 10-06 19:03:10.503  8095  8122 I Unity   :
    446. 10-06 19:03:10.503  8095  8122 I Unity   : (Filename: D Line: 0)
    447. 10-06 19:03:10.503  8095  8122 I Unity   :
    448. 10-06 19:03:10.505  8095  8122 I Unity   : InitRenderThreadRoutine end
    449. 10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    450. 10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    451. 10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    452. 10-06 19:03:10.505  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    453. 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)
    454. 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)
    455. 10-06 19:03:10.505  8095  8122 I Unity   :
    456. 10-06 19:03:10.505  8095  8122 I Unity   : (Filename: D Line: 0)
    457. 10-06 19:03:10.505  8095  8122 I Unity   :
    458. 10-06 19:03:10.545  8095  8122 I Unity   : +++++++++++++++++++++++++++++++2
    459. 10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    460. 10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    461. 10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    462. 10-06 19:03:10.545  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    463. 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)
    464. 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)
    465. 10-06 19:03:10.545  8095  8122 I Unity   :
    466. 10-06 19:03:10.545  8095  8122 I Unity   : (Filename: D Line: 0)
    467. 10-06 19:03:10.545  8095  8122 I Unity   :
    468. 10-06 19:03:10.545  8095  8122 I UnityPlugin: PVR_SetCpuLevel  level 0
    469. 10-06 19:03:10.877  8095  8095 I UnityPlayerNativeActivityPico: remove Imageview 1
    470. 10-06 19:03:10.877  8095  8095 E UnityPlayerNativeActivityPico: msg 1 received, but animation is null.
    471. 10-06 19:03:12.790  8095  8122 I Unity   : ###################### Successfully loaded Asset Bundle: videos
    472. 10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    473. 10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    474. 10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    475. 10-06 19:03:12.790  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    476. 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)
    477. 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)
    478. 10-06 19:03:12.790  8095  8122 I Unity   :
    479. 10-06 19:03:12.790  8095  8122 I Unity   : (Filename: D Line: 0)
    480. 10-06 19:03:12.790  8095  8122 I Unity   :
    481. 10-06 19:03:12.791  8095  8122 I Unity   : ####################### switch statement for assent bundle: videos
    482. 10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    483. 10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    484. 10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    485. 10-06 19:03:12.791  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    486. 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)
    487. 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)
    488. 10-06 19:03:12.791  8095  8122 I Unity   :
    489. 10-06 19:03:12.791  8095  8122 I Unity   : (Filename: D Line: 0)
    490. 10-06 19:03:12.791  8095  8122 I Unity   :
    491. 10-06 19:03:12.792  8095  8122 I Unity   : ####################### case: videos
    492. 10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    493. 10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    494. 10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    495. 10-06 19:03:12.792  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    496. 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)
    497. 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)
    498. 10-06 19:03:12.792  8095  8122 I Unity   :
    499. 10-06 19:03:12.792  8095  8122 I Unity   : (Filename: D Line: 0)
    500. 10-06 19:03:12.792  8095  8122 I Unity   :
    501. 10-06 19:03:12.796  8095  8122 I Unity   : Got the following 2 names from asset bundle: videos
    502. 10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    503. 10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    504. 10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    505. 10-06 19:03:12.796  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    506. 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)
    507. 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)
    508. 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)
    509. 10-06 19:03:12.796  8095  8122 I Unity   :
    510. 10-06 19:03:12.796  8095  8122 I Unity   : (Filename: D Line: 0)
    511. 10-06 19:03:12.796  8095  8122 I Unity   :
    512. 10-06 19:03:12.798  8095  8122 I Unity   : - assets/videos/legend of maui_cc_7_18.mp4
    513. 10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    514. 10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    515. 10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    516. 10-06 19:03:12.798  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    517. 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)
    518. 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)
    519. 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)
    520. 10-06 19:03:12.798  8095  8122 I Unity   :
    521. 10-06 19:03:12.798  8095  8122 I Unity   : (Filename: D Line: 0)
    522. 10-06 19:03:12.798  8095  8122 I Unity   :
    523. 10-06 19:03:12.801  8095  8122 I Unity   : - assets/videos/moma_loves_mud.mp4
    524. 10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    525. 10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    526. 10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    527. 10-06 19:03:12.801  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    528. 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)
    529. 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)
    530. 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)
    531. 10-06 19:03:12.801  8095  8122 I Unity   :
    532. 10-06 19:03:12.801  8095  8122 I Unity   : (Filename: D Line: 0)
    533. 10-06 19:03:12.801  8095  8122 I Unity   :
    534. 10-06 19:03:12.803  8095  8122 I Unity   : ####################### LoadVideo called.
    535. 10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    536. 10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    537. 10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    538. 10-06 19:03:12.803  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    539. 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)
    540. 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)
    541. 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)
    542. 10-06 19:03:12.803  8095  8122 I Unity   :
    543. 10-06 19:03:12.803  8095  8122 I Unity   : (Filename: D Line: 0)
    544. 10-06 19:03:12.803  8095  8122 I Unity   :
    545. 10-06 19:03:12.808  8095  8122 I Unity   : ####################### LoadVideo called...
    546. 10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    547. 10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    548. 10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    549. 10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    550. 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)
    551. 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)
    552. 10-06 19:03:12.808  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    553. 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)
    554. 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)
    555. 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)
    556. 10-06 19:03:12.808  8095  8122 I Unity   : Uni
    557. 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
    558. 10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    559. 10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    560. 10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    561. 10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    562. 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)
    563. 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)
    564. 10-06 19:03:12.811  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    565. 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)
    566. 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)
    567. 10-06 19:03:12.811  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject
    568. 10-06 19:03:12.817  8095  8122 I Unity   : ######################## Successfully loaded video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
    569. 10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    570. 10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    571. 10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    572. 10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    573. 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)
    574. 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)
    575. 10-06 19:03:12.817  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    576. 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)
    577. 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)
    578. 10-06 19:03:12.817  8095  8122 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_U
    579. 10-06 19:03:12.819  8095  8122 I Unity   : ####################### PlayVideo called.
    580. 10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    581. 10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    582. 10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    583. 10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    584. 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)
    585. 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)
    586. 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)
    587. 10-06 19:03:12.819  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    588. 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)
    589. 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)
    590. 10-06 19:03:12.819  8095  8122 I Unity   : <LoadAssetBundle>d__25
    591. 10-06 19:03:12.823  8095  8122 I Unity   : ###################### Playing video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
    592. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    593. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    594. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    595. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    596. 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)
    597. 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)
    598. 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)
    599. 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)
    600. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    601. 10-06 19:03:12.823  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Script
    602. 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.
    603. 10-06 19:03:12.867  8095  8143 W Unity   :
    604. 10-06 19:03:12.867  8095  8143 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
    605. 10-06 19:03:12.867  8095  8143 W Unity   :
    606. 10-06 19:03:12.868  8095  8143 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
    607. 10-06 19:03:12.868  8095  8143 W Unity   :
    608. 10-06 19:03:12.868  8095  8143 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
    609. 10-06 19:03:12.868  8095  8143 W Unity   :
    610. 10-06 19:03:44.472  8095  8095 I UnityPlayerNativeActivityPico: onPause set cpu 0
    611. 10-06 19:03:44.472  8095  8095 I UnityPlugin: PVR_SetCpuLevel  level 0
    612. 10-06 19:03:44.582  8095  8095 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
    613. 10-06 19:03:44.582  8095  8095 I Unity   : onPause
    614. 10-06 19:03:44.603  8095  8122 I Unity   : ####################### OnApplicationPause: True
    615. 10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    616. 10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    617. 10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    618. 10-06 19:03:44.603  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    619. 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)
    620. 10-06 19:03:44.603  8095  8122 I Unity   :
    621. 10-06 19:03:44.603  8095  8122 I Unity   : (Filename: D Line: 0)
    622. 10-06 19:03:44.603  8095  8122 I Unity   :
    623. 10-06 19:03:44.606  8095  8122 I Unity   : OnApplicationPause-------------------------true
    624. 10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    625. 10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    626. 10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    627. 10-06 19:03:44.606  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    628. 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)
    629. 10-06 19:03:44.606  8095  8122 I Unity   :
    630. 10-06 19:03:44.606  8095  8122 I Unity   : (Filename: D Line: 0)
    631. 10-06 19:03:44.606  8095  8122 I Unity   :
    632. 10-06 19:03:44.613  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- True
    633. 10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    634. 10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    635. 10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    636. 10-06 19:03:44.613  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    637. 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)
    638. 10-06 19:03:44.613  8095  8122 I Unity   :
    639. 10-06 19:03:44.613  8095  8122 I Unity   : (Filename: D Line: 0)
    640. 10-06 19:03:44.613  8095  8122 I Unity   :
    641. 10-06 19:03:44.618  8095  8122 I Unity   : Stop home key   Receiver
    642. 10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    643. 10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    644. 10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    645. 10-06 19:03:44.618  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    646. 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)
    647. 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)
    648. 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)
    649. 10-06 19:03:44.618  8095  8122 I Unity   :
    650. 10-06 19:03:44.618  8095  8122 I Unity   : (Filename: D Line: 0)
    651. 10-06 19:03:44.618  8095  8122 I Unity   :
    652. 10-06 19:03:44.619  8095  8122 I UnityPlugin: EVENT_PAUSE, not VR9
    653. 10-06 19:03:44.619  8095  8122 I UnityPlugin: PVR_Pause()
    654. 10-06 19:03:44.643  8095  8122 I UnityPlugin: Pvr_StopSensor_ enter
    655. 10-06 19:03:44.643  8095  8122 I UnityPlugin: Pvr_StopSensor_ exit
    656. 10-06 19:03:44.647  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    657. 10-06 19:03:44.650  8095  8095 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
    658. 10-06 19:03:44.656  8095  8122 D Unity   : SetWindow 0 0x0
    659. 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 }
    660. 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 }
    661. 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 }
    662. 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 }
    663. 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 }
    664. 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 }
    665. 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 }
    666. 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 }
    667. 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 }
    668. 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 }
    669. 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 }
    670. 10-06 19:04:20.066  8095  8122 D Unity   : SetWindow 0 0xdfb6c008
    671. 10-06 19:04:20.066  8095  8122 D Unity   : SetWindow 0 0xdfb6c008
    672. 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
    673. 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
    674. 10-06 19:04:20.101  8095  8095 I UnityPlayerNativeActivityPico: ======onResume111111111===
    675. 10-06 19:04:20.104  8095  8095 I UnityPlayerNativeActivityPico: start seting  ORIENTATION  0
    676. 10-06 19:04:20.108  8095  8095 I UnityPlayerNativeActivityPico: onResume get iLogicFlow = 0
    677. 10-06 19:04:20.108  8095  8095 I Unity   : onResume
    678. 10-06 19:04:20.109  8095  8122 D Unity   : [EGL] Attaching window :0xdfb6c008
    679. 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.
    680. 10-06 19:04:20.110  8095  8122 E Unity   :
    681. 10-06 19:04:20.110  8095  8122 E Unity   : (Filename: ./Runtime/GfxDevice/egl/WindowContextEGL.cpp Line: 78)
    682. 10-06 19:04:20.110  8095  8122 E Unity   :
    683. 10-06 19:04:20.118  8095  8122 D Unity   : ANativeWindow: (2880/1600) RequestedResolution: (0/0) RenderingResolution: (0/0) EGLSurface: (2880/1600)
    684. 10-06 19:04:20.127  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    685. 10-06 19:04:20.137  8095  8122 D Unity   : Choreographer available: Enabling VSYNC timing
    686. 10-06 19:04:20.139  8095  8122 I Unity   : ####################### OnApplicationPause: False
    687. 10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    688. 10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    689. 10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    690. 10-06 19:04:20.139  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    691. 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)
    692. 10-06 19:04:20.139  8095  8122 I Unity   :
    693. 10-06 19:04:20.139  8095  8122 I Unity   : (Filename: D Line: 0)
    694. 10-06 19:04:20.139  8095  8122 I Unity   :
    695. 10-06 19:04:20.140  8095  8122 I Unity   : OnApplicationPause-------------------------false
    696. 10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    697. 10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    698. 10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    699. 10-06 19:04:20.140  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    700. 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)
    701. 10-06 19:04:20.140  8095  8122 I Unity   :
    702. 10-06 19:04:20.140  8095  8122 I Unity   : (Filename: D Line: 0)
    703. 10-06 19:04:20.140  8095  8122 I Unity   :
    704. 10-06 19:04:20.141  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- False
    705. 10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    706. 10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    707. 10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    708. 10-06 19:04:20.141  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    709. 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)
    710. 10-06 19:04:20.141  8095  8122 I Unity   :
    711. 10-06 19:04:20.141  8095  8122 I Unity   : (Filename: D Line: 0)
    712. 10-06 19:04:20.141  8095  8122 I Unity   :
    713. 10-06 19:04:20.144  8095  8122 I UnityPlugin: Pvr_StartSensor_ enter
    714. 10-06 19:04:20.145  8095  8122 I UnityPlugin: Pvr_StartSensor_ exit
    715. 10-06 19:04:20.153  8095  8122 I UnityPlayerNativeActivityPico: LLLL presentationDisplays.length = 0
    716. 10-06 19:04:20.156  8095  8122 I Unity   : onresume set monoPresentation success ?-------------True
    717. 10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    718. 10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    719. 10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    720. 10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    721. 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)
    722. 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)
    723. 10-06 19:04:20.156  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    724. 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)
    725. 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)
    726. 10-06 19:04:20.156  8095  8122 I Unity   :
    727. 10-06 19:04:20.156  8095  8122 I Unity   : (Filename: D Line: 0)
    728. 10-06 19:04:20.156  8095  8122 I Unity   :
    729. 10-06 19:04:20.166  8095  8122 I Unity   : onresume presentation existed ?-------------False
    730. 10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    731. 10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    732. 10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    733. 10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    734. 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)
    735. 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)
    736. 10-06 19:04:20.166  8095  8122 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    737. 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)
    738. 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)
    739. 10-06 19:04:20.166  8095  8122 I Unity   :
    740. 10-06 19:04:20.166  8095  8122 I Unity   : (Filename: D Line: 0)
    741. 10-06 19:04:20.166  8095  8122 I Unity   :
    742. 10-06 19:04:20.172  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    743. 10-06 19:04:20.188  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    744. 10-06 19:04:20.204  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    745. 10-06 19:04:20.205  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    746. 10-06 19:04:21.219  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    747. 10-06 19:04:21.399  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    748. 10-06 19:04:21.411  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    749. 10-06 19:04:21.506  8095  8122 I UnityPlugin: FOVEA up.focused == false!
    750. 10-06 19:04:21.520  8095  8122 I UnityPlugin: EVENT_RESUME, not VR9
    751. 10-06 19:04:21.520  8095  8122 I UnityPlugin: PVR_Resume()
    752. 10-06 19:04:21.562  8095  8122 I Unity   : Start home key   Receiver
    753. 10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    754. 10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    755. 10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    756. 10-06 19:04:21.562  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    757. 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)
    758. 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)
    759. 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)
    760. 10-06 19:04:21.562  8095  8122 I Unity   :
    761. 10-06 19:04:21.562  8095  8122 I Unity   : (Filename: D Line: 0)
    762. 10-06 19:04:21.562  8095  8122 I Unity   :
    763. 10-06 19:04:21.564  8095  8122 I UnityPlugin: PVR_SetCpuLevel  level 0
    764. 10-06 19:04:22.428  8095  8095 I UnityPlayerNativeActivityPico: onPause set cpu 0
    765. 10-06 19:04:22.428  8095  8095 I UnityPlugin: PVR_SetCpuLevel  level 0
    766. 10-06 19:04:22.474  8095  8095 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
    767. 10-06 19:04:22.474  8095  8095 I Unity   : onPause
    768. 10-06 19:04:22.483  8095  8122 I Unity   : ####################### OnApplicationPause: True
    769. 10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    770. 10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    771. 10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    772. 10-06 19:04:22.483  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    773. 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)
    774. 10-06 19:04:22.483  8095  8122 I Unity   :
    775. 10-06 19:04:22.483  8095  8122 I Unity   : (Filename: D Line: 0)
    776. 10-06 19:04:22.483  8095  8122 I Unity   :
    777. 10-06 19:04:22.484  8095  8122 I Unity   : OnApplicationPause-------------------------true
    778. 10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    779. 10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    780. 10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    781. 10-06 19:04:22.484  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    782. 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)
    783. 10-06 19:04:22.484  8095  8122 I Unity   :
    784. 10-06 19:04:22.484  8095  8122 I Unity   : (Filename: D Line: 0)
    785. 10-06 19:04:22.484  8095  8122 I Unity   :
    786. 10-06 19:04:22.485  8095  8122 I Unity   : tclogpp Avtivity Pause state is ----- True
    787. 10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    788. 10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    789. 10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    790. 10-06 19:04:22.485  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    791. 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)
    792. 10-06 19:04:22.485  8095  8122 I Unity   :
    793. 10-06 19:04:22.485  8095  8122 I Unity   : (Filename: D Line: 0)
    794. 10-06 19:04:22.485  8095  8122 I Unity   :
    795. 10-06 19:04:22.487  8095  8122 I Unity   : Stop home key   Receiver
    796. 10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    797. 10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    798. 10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    799. 10-06 19:04:22.487  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    800. 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)
    801. 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)
    802. 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)
    803. 10-06 19:04:22.487  8095  8122 I Unity   :
    804. 10-06 19:04:22.487  8095  8122 I Unity   : (Filename: D Line: 0)
    805. 10-06 19:04:22.487  8095  8122 I Unity   :
    806. 10-06 19:04:22.487  8095  8122 I UnityPlugin: EVENT_PAUSE, not VR9
    807. 10-06 19:04:22.487  8095  8122 I UnityPlugin: PVR_Pause()
    808. 10-06 19:04:22.509  8095  8122 I UnityPlugin: Pvr_StopSensor_ enter
    809. 10-06 19:04:22.509  8095  8122 I UnityPlugin: Pvr_StopSensor_ exit
    810. 10-06 19:04:22.519  8095  8122 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    811. 10-06 19:04:22.521  8095  8095 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
    812. 10-06 19:04:22.528  8095  8095 I Unity   : windowFocusChanged: false
    813. 10-06 19:04:22.531  8095  8122 I Unity   : ####################### OnApplicationFocus, hasFocus: False
    814. 10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    815. 10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    816. 10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    817. 10-06 19:04:22.531  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    818. 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)
    819. 10-06 19:04:22.531  8095  8122 I Unity   :
    820. 10-06 19:04:22.531  8095  8122 I Unity   : (Filename: D Line: 0)
    821. 10-06 19:04:22.531  8095  8122 I Unity   :
    822. 10-06 19:04:22.536  8095  8122 I Unity   : OnApplicationFocus-------------------------false
    823. 10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    824. 10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    825. 10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    826. 10-06 19:04:22.536  8095  8122 I Unity   : UnityEngine.Debug:Log(Object)
    827. 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)
    828. 10-06 19:04:22.536  8095  8122 I Unity   :
    829. 10-06 19:04:22.536  8095  8122 I Unity   : (Filename: D Line: 0)
    830. 10-06 19:04:22.536  8095  8122 I Unity   :
    831. 10-06 19:04:22.536  2908  2908 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
    832. 10-06 19:04:22.556  2908  2908 I Shortcut: Home package is com.picovrtob.vrlauncher, activity is com.unity3d.player.UnityPlayerNativeActivityPico
    833. 10-06 19:04:22.557  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,340
    834. 10-06 19:04:22.557  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
    835. 10-06 19:04:22.583  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
    836. 10-06 19:04:22.610  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
    837. 10-06 19:04:22.641  8095  8122 D Unity   : SetWindow 0 0x0
    838. 10-06 19:04:26.464  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
    839. 10-06 19:04:28.458   918  2000 I ActivityManager:   Force finishing activity ActivityRecord{8f2e482 u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t340}
    840. 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
    841. 10-06 19:05:20.160   918  1031 E ActivityTrigger: activityStartTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
    842. 10-06 19:05:20.161   918  1031 E ActivityTrigger: activityResumeTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
    843. 10-06 19:05:20.164   918  4049 E ActivityTrigger: activityResumeTrigger: not whiteListedcom.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico/3000
    844. 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
    845. 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
    846. 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
    847. 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
    848. 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
    849. 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
    850. 10-06 19:05:20.330  8288  8288 I VrApi   : open replaceable failed /system/lib/libPvr_UnitySDKExt3.so
    851. 10-06 19:05:20.336  8288  8288 I VrServiceApi: dlsym for getPVRModule failed dlopen failed: library "/system/lib/libPvr_UnitySDKExt3.so" not found
    852. 10-06 19:05:20.341  8288  8288 I UnityPlugin: PVR_SetCpuLevel  level 9999
    853. 10-06 19:05:20.431  8288  8288 I UnityPlayerNativeActivityPico: 2D loading dir: system/media/LoadingRes
    854. 10-06 19:05:20.452  8288  8288 I UnityPlayerNativeActivityPico: presentationDisplays.length 0
    855. 10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: WFDEnableStatus = 1
    856. 10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: onCreate get iLogicFlow = 0
    857. 10-06 19:05:20.465  8288  8288 I UnityPlayerNativeActivityPico: has android.permission.READ_EXTERNAL_STORAGE this
    858. 10-06 19:05:20.475  8288  8288 I UnityPlayerNativeActivityPico: ======onResume111111111===
    859. 10-06 19:05:20.478  8288  8288 I UnityPlayerNativeActivityPico: start seting  ORIENTATION  0
    860. 10-06 19:05:20.479  8288  8288 I UnityPlayerNativeActivityPico: onResume get iLogicFlow = 0
    861. 10-06 19:05:20.479  8288  8288 I Unity   : onResume
    862. 10-06 19:05:20.504  8288  8288 I UnityPlayerNativeActivityPico: onAttachedToWindow!!!!!!!!!!!
    863. 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
    864. 10-06 19:05:20.524  8288  8315 D Unity   : SetWindow 0 0xdfb67808
    865. 10-06 19:05:20.525  8288  8315 D Unity   : SetWindow 0 0xdfb67808
    866. 10-06 19:05:20.556  8288  8288 I Unity   : windowFocusChanged: true
    867. 10-06 19:05:20.559   918  1064 I ActivityManager: Displayed com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico: +393ms
    868. 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
    869. 10-06 19:05:20.579  8288  8315 D Unity   : Enabling Unity systrace
    870. 10-06 19:05:20.589  8288  8315 D Unity   : [VFS] Mount /data/app/com.picovrtob.vrlauncher-ZAhFjKhFclslI6c4oB5ihg==/base.apk
    871. 10-06 19:05:20.613  8288  8315 I Unity   : SystemInfo CPU = ARMv7 VFPv3 NEON, Cores = 8, Memory = 3736mb
    872. 10-06 19:05:20.613  8288  8315 I Unity   : SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
    873. 10-06 19:05:20.614  8288  8315 I Unity   : ApplicationInfo com.picovrtob.vrlauncher version 1.0.0 build 361da795-f1a8-4b60-8d43-6a0eda1aa54b
    874. 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'
    875. 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'
    876. 10-06 19:05:20.623  8288  8315 D Unity   : Mono config path = 'assets/bin/Data/Managed/etc'
    877. 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)
    878. 10-06 19:05:20.623  8288  8315 D Unity   : PlayerConnection initialized network socket : 0.0.0.0 55014
    879. 10-06 19:05:20.623  8288  8315 D Unity   : PlayerConnection initialized unix socket : Unity-com.picovrtob.vrlauncher
    880. 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"'/storage/emulated/0/Android/data/com.picovrtob.vrlauncher/cache/ScriptOnly/2019.1.14f1/mono/patch.config' is missing.
    881. 10-06 19:05:21.416  8288  8315 D Unity   : - Completed reload, in  0.339 seconds
    882. 10-06 19:05:21.475  8288  8315 D Unity   : PlayerInitEngineGraphics OK
    883. 10-06 19:05:21.477  8288  8315 D Unity   : Found 50 native sensors
    884. 10-06 19:05:21.478  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    885. 10-06 19:05:21.478  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    886. 10-06 19:05:23.548  8288  8315 D Unity   : UnloadTime: 1.597500 ms
    887. 10-06 19:05:23.552  8288  8315 D Unity   : UUID: 23aaf967faf50a61 => 5bf752b54e7a4b5d8b827f59bf9c6433
    888. 10-06 19:05:23.646  8288  8315 I Unity   : ####################### OnApplicationPause: False
    889. 10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    890. 10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    891. 10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    892. 10-06 19:05:23.646  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    893. 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)
    894. 10-06 19:05:23.646  8288  8315 I Unity   :
    895. 10-06 19:05:23.646  8288  8315 I Unity   : (Filename: D Line: 0)
    896. 10-06 19:05:23.646  8288  8315 I Unity   :
    897. 10-06 19:05:23.649  8288  8315 I Unity   : ####################### OnApplicationFocus, hasFocus: True
    898. 10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    899. 10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    900. 10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    901. 10-06 19:05:23.649  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    902. 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)
    903. 10-06 19:05:23.649  8288  8315 I Unity   :
    904. 10-06 19:05:23.649  8288  8315 I Unity   : (Filename: D Line: 0)
    905. 10-06 19:05:23.649  8288  8315 I Unity   :
    906. 10-06 19:05:23.657  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    907. 10-06 19:05:23.660  8288  8315 D Unity   : Choreographer available: Enabling VSYNC timing
    908. 10-06 19:05:23.666  8288  8315 I Unity   : PlayerService: Instantiating Pico player prefab.
    909. 10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    910. 10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    911. 10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    912. 10-06 19:05:23.666  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    913. 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)
    914. 10-06 19:05:23.666  8288  8315 I Unity   :
    915. 10-06 19:05:23.666  8288  8315 I Unity   : (Filename: D Line: 0)
    916. 10-06 19:05:23.666  8288  8315 I Unity   :
    917. 10-06 19:05:23.684  8288  8315 I Unity   : viewer :False
    918. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    919. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    920. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    921. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    922. 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)
    923. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    924. 10-06 19:05:23.684  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    925. 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)
    926. 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)
    927. 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)
    928. 10-06 19:05:23.684  8288  8315 I Unity   :
    929. 10-06 19:05:23.684  8288  8315 I Unity   : (Filename: D
    930. 10-06 19:05:23.768  8288  8315 I Unity   : Android 7 = False
    931. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    932. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    933. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    934. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    935. 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)
    936. 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)
    937. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    938. 10-06 19:05:23.768  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    939. 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)
    940. 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
    941. 10-06 19:05:23.772  8288  8315 I Unity   : pvr_UnitySDKRender  init
    942. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    943. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    944. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    945. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    946. 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)
    947. 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)
    948. 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)
    949. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    950. 10-06 19:05:23.772  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    951. 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
    952. 10-06 19:05:23.780  8288  8315 I Unity   : SDK Version :  2.7.9.4  Unity Script Version :2.7.9.4
    953. 10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    954. 10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    955. 10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    956. 10-06 19:05:23.780  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    957. 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)
    958. 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)
    959. 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)
    960. 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)
    961. 10-06 19:05:23.780  8288  8315 I Unity   : Pvr_UnitySDKManager:Awake() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
    962. 10-06 19:05:23.817  8288  8315 I UnityClient: systemproc is 0
    963. 10-06 19:05:23.829  8288  8315 I Unity   : Init Render Ability Success!
    964. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    965. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    966. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    967. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    968. 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)
    969. 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)
    970. 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)
    971. 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)
    972. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    973. 10-06 19:05:23.829  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vecto
    974. 10-06 19:05:23.848  8288  8315 I Unity   : eyeBufferResolution:(2048.0, 2048.0), scaleFactor: 1
    975. 10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    976. 10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    977. 10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    978. 10-06 19:05:23.848  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    979. 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)
    980. 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)
    981. 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)
    982. 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)
    983. 10-06 19:05:23.848  8288  8315 I Unity   : Pvr_UnitySDKRender:.ctor() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\Pico
    984. 10-06 19:05:23.860  8288  8315 I Unity   : eyeTextureIndex : 0
    985. 10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    986. 10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    987. 10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    988. 10-06 19:05:23.860  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    989. 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)
    990. 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)
    991. 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)
    992. 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)
    993. 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\
    994. 10-06 19:05:23.864  8288  8315 I Unity   : eyeTextureIndex : 1
    995. 10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    996. 10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    997. 10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    998. 10-06 19:05:23.864  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    999. 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)
    1000. 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)
    1001. 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)
    1002. 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)
    1003. 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\
    1004. 10-06 19:05:23.868  8288  8315 I Unity   : eyeTextureIndex : 2
    1005. 10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1006. 10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1007. 10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1008. 10-06 19:05:23.868  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1009. 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)
    1010. 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)
    1011. 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)
    1012. 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)
    1013. 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\
    1014. 10-06 19:05:23.871  8288  8315 I Unity   : eyeTextureIndex : 3
    1015. 10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1016. 10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1017. 10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1018. 10-06 19:05:23.871  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1019. 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)
    1020. 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)
    1021. 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)
    1022. 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)
    1023. 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\
    1024. 10-06 19:05:23.876  8288  8315 I Unity   : eyeTextureIndex : 4
    1025. 10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1026. 10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1027. 10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1028. 10-06 19:05:23.876  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1029. 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)
    1030. 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)
    1031. 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)
    1032. 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)
    1033. 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\
    1034. 10-06 19:05:23.880  8288  8315 I Unity   : eyeTextureIndex : 5
    1035. 10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1036. 10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1037. 10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1038. 10-06 19:05:23.880  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1039. 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)
    1040. 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)
    1041. 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)
    1042. 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)
    1043. 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\
    1044. 10-06 19:05:23.883  8288  8315 I Unity   : Init Render Ability Success!
    1045. 10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1046. 10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1047. 10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1048. 10-06 19:05:23.883  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1049. 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)
    1050. 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)
    1051. 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)
    1052. 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)
    1053. 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
    1054. 10-06 19:05:23.885  8288  8315 I Unity   : pvr_UnitySDKSensor init
    1055. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1056. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1057. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1058. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1059. 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)
    1060. 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)
    1061. 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)
    1062. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    1063. 10-06 19:05:23.885  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    1064. 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
    1065. 10-06 19:05:23.893  8288  8315 W Unity   : This platform does NOT support 6 Dof !
    1066. 10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1067. 10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1068. 10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.Logger:Log(LogType, Object)
    1069. 10-06 19:05:23.893  8288  8315 W Unity   : UnityEngine.Debug:LogWarning(Object)
    1070. 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)
    1071. 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)
    1072. 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)
    1073. 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)
    1074. 10-06 19:05:23.893  8288  8315 W Unity   : Pvr_UnitySDKManager:SDKManagerInit() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject\Assets\PicoMobile
    1075. 10-06 19:05:23.895  8288  8315 I UnityPlugin: Pvr_InitSensor_ ENTER
    1076. 10-06 19:05:23.896  8288  8315 I UnityPlugin: Pvr_InitSensor_ EXIT
    1077. 10-06 19:05:23.897  8288  8315 I UnityPlugin: Pvr_StartSensor_ enter
    1078. 10-06 19:05:23.897  8288  8315 I UnityPlugin: Pvr_StartSensor_ exit
    1079. 10-06 19:05:23.905  8288  8315 I Unity   : Start home key   Receiver
    1080. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1081. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1082. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1083. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1084. 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)
    1085. 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)
    1086. 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)
    1087. 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)
    1088. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    1089. 10-06 19:05:23.905  8288  8315 I Unity   : UnityEngine.Object:Internal_Instantia
    1090. 10-06 19:05:23.907  8288  8315 I Unity   : SDK Init success.
    1091. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1092. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1093. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1094. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1095. 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)
    1096. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle_Injected(Object, Vector3&, Quaternion&)
    1097. 10-06 19:05:23.907  8288  8315 I Unity   : UnityEngine.Object:Internal_InstantiateSingle(Object, Vector3, Quaternion)
    1098. 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)
    1099. 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)
    1100. 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)
    1101. 10-06 19:05:23.907  8288  8315 I Unity   :
    1102. 10-06 19:05:23.907  8288  8315 I Unity   : (Filename
    1103. 10-06 19:05:23.930  8288  8315 I Unity   : PlayerService: Setting up Pico HMD.
    1104. 10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1105. 10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1106. 10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1107. 10-06 19:05:23.930  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1108. 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)
    1109. 10-06 19:05:23.930  8288  8315 I Unity   :
    1110. 10-06 19:05:23.930  8288  8315 I Unity   : (Filename: D Line: 0)
    1111. 10-06 19:05:23.930  8288  8315 I Unity   :
    1112. 10-06 19:05:23.931  8288  8315 I Unity   : VideoService: Instantiating video player.
    1113. 10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1114. 10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1115. 10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1116. 10-06 19:05:23.931  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1117. 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)
    1118. 10-06 19:05:23.931  8288  8315 I Unity   :
    1119. 10-06 19:05:23.931  8288  8315 I Unity   : (Filename: D Line: 0)
    1120. 10-06 19:05:23.931  8288  8315 I Unity   :
    1121. 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
    1122. 10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1123. 10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1124. 10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1125. 10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1126. 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)
    1127. 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)
    1128. 10-06 19:05:23.962  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1129. 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)
    1130. 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
    1131. 10-06 19:05:24.142  8288  8315 I Unity   : ####################### Successfully got videoService.
    1132. 10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1133. 10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1134. 10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1135. 10-06 19:05:24.142  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1136. 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)
    1137. 10-06 19:05:24.142  8288  8315 I Unity   :
    1138. 10-06 19:05:24.142  8288  8315 I Unity   : (Filename: D Line: 0)
    1139. 10-06 19:05:24.142  8288  8315 I Unity   :
    1140. 10-06 19:05:24.146  8288  8363 D Unity   : Error setting CPU thread affinity, errno=3, tid=8364
    1141. 10-06 19:05:24.151  8288  8315 I Unity   : InitRenderThreadRoutine begin
    1142. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1143. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1144. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1145. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1146. 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)
    1147. 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)
    1148. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1149. 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)
    1150. 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)
    1151. 10-06 19:05:24.151  8288  8315 I Unity   : UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator, IntPtr) (at /Users/builduser/buildslave/u
    1152. 10-06 19:05:24.180  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    1153. 10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1154. 10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1155. 10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1156. 10-06 19:05:24.180  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1157. 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)
    1158. 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)
    1159. 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)
    1160. 10-06 19:05:24.180  8288  8315 I Unity   :
    1161. 10-06 19:05:24.180  8288  8315 I Unity   : (Filename: D Line: 0)
    1162. 10-06 19:05:24.180  8288  8315 I Unity   :
    1163. 10-06 19:05:24.209  8288  8315 I UnityPlugin: FOVEA up.focused == false!
    1164. 10-06 19:05:24.233  8288  8315 I UnityPlugin: FOVEA up.focused == false!
    1165. 10-06 19:05:24.274  8288  8315 I Unity   : +++++++++++++++++++++++++++++++0
    1166. 10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1167. 10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1168. 10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1169. 10-06 19:05:24.274  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1170. 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)
    1171. 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)
    1172. 10-06 19:05:24.274  8288  8315 I Unity   :
    1173. 10-06 19:05:24.274  8288  8315 I Unity   : (Filename: D Line: 0)
    1174. 10-06 19:05:24.274  8288  8315 I Unity   :
    1175. 10-06 19:05:24.317  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    1176. 10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1177. 10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1178. 10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1179. 10-06 19:05:24.317  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1180. 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)
    1181. 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)
    1182. 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)
    1183. 10-06 19:05:24.317  8288  8315 I Unity   :
    1184. 10-06 19:05:24.317  8288  8315 I Unity   : (Filename: D Line: 0)
    1185. 10-06 19:05:24.317  8288  8315 I Unity   :
    1186. 10-06 19:05:24.318  8288  8315 I UnityPlugin: FOVEA up.focused == false!
    1187. 10-06 19:05:24.336  8288  8315 I UnityPlugin: FOVEA up.focused == false!
    1188. 10-06 19:05:24.357  8288  8315 I Unity   : +++++++++++++++++++++++++++++++1
    1189. 10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1190. 10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1191. 10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1192. 10-06 19:05:24.357  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1193. 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)
    1194. 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)
    1195. 10-06 19:05:24.357  8288  8315 I Unity   :
    1196. 10-06 19:05:24.357  8288  8315 I Unity   : (Filename: D Line: 0)
    1197. 10-06 19:05:24.357  8288  8315 I Unity   :
    1198. 10-06 19:05:24.362  8288  8315 I Unity   : sesnor update --- GetUnitySDKSensorState     -1
    1199. 10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1200. 10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1201. 10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1202. 10-06 19:05:24.362  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1203. 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)
    1204. 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)
    1205. 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)
    1206. 10-06 19:05:24.362  8288  8315 I Unity   :
    1207. 10-06 19:05:24.362  8288  8315 I Unity   : (Filename: D Line: 0)
    1208. 10-06 19:05:24.362  8288  8315 I Unity   :
    1209. 10-06 19:05:24.364  8288  8315 I Unity   : InitRenderThreadRoutine after a wait
    1210. 10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1211. 10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1212. 10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1213. 10-06 19:05:24.364  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1214. 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)
    1215. 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)
    1216. 10-06 19:05:24.364  8288  8315 I Unity   :
    1217. 10-06 19:05:24.364  8288  8315 I Unity   : (Filename: D Line: 0)
    1218. 10-06 19:05:24.364  8288  8315 I Unity   :
    1219. 10-06 19:05:24.367  8288  8315 I UnityPlugin: EVENT_INIT_RENDERTHREAD, not VR9
    1220. 10-06 19:05:24.367  8288  8315 I UnityPlugin: PVR_InitRenderThread()
    1221. 10-06 19:05:24.368  8288  8315 I UnityPlugin: FOVEA Checking for glTextureFoveationParametersEXT support...
    1222. 10-06 19:05:24.368  8288  8315 I UnityPlugin: FOVEA glTextureFoveationParametersQCOM SUPPORTED
    1223. 10-06 19:05:24.368  8288  8315 I UnityPlugin: Mode Parms CpuLevel 2 GpuLevel 2
    1224. 10-06 19:05:24.368  8288  8315 I UnityPlugin: ENABLE_CHROMATIC    true
    1225. 10-06 19:05:24.368  8288  8315 I UnityPlugin: PVR_Resume()
    1226. 10-06 19:05:24.413  8288  8315 I Unity   : IssueRenderThread end
    1227. 10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1228. 10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1229. 10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1230. 10-06 19:05:24.413  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1231. 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)
    1232. 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)
    1233. 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)
    1234. 10-06 19:05:24.413  8288  8315 I Unity   :
    1235. 10-06 19:05:24.413  8288  8315 I Unity   : (Filename: D Line: 0)
    1236. 10-06 19:05:24.413  8288  8315 I Unity   :
    1237. 10-06 19:05:24.414  8288  8315 I Unity   : InitRenderThreadRoutine end
    1238. 10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1239. 10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1240. 10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1241. 10-06 19:05:24.414  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1242. 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)
    1243. 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)
    1244. 10-06 19:05:24.414  8288  8315 I Unity   :
    1245. 10-06 19:05:24.414  8288  8315 I Unity   : (Filename: D Line: 0)
    1246. 10-06 19:05:24.414  8288  8315 I Unity   :
    1247. 10-06 19:05:24.455  8288  8315 I Unity   : +++++++++++++++++++++++++++++++2
    1248. 10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1249. 10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1250. 10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1251. 10-06 19:05:24.455  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1252. 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)
    1253. 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)
    1254. 10-06 19:05:24.455  8288  8315 I Unity   :
    1255. 10-06 19:05:24.455  8288  8315 I Unity   : (Filename: D Line: 0)
    1256. 10-06 19:05:24.455  8288  8315 I Unity   :
    1257. 10-06 19:05:24.455  8288  8315 I UnityPlugin: PVR_SetCpuLevel  level 0
    1258. 10-06 19:05:24.807  8288  8288 I UnityPlayerNativeActivityPico: remove Imageview 1
    1259. 10-06 19:05:24.808  8288  8288 E UnityPlayerNativeActivityPico: msg 1 received, but animation is null.
    1260. 10-06 19:05:26.787  8288  8315 I Unity   : ###################### Successfully loaded Asset Bundle: videos
    1261. 10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1262. 10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1263. 10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1264. 10-06 19:05:26.787  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1265. 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)
    1266. 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)
    1267. 10-06 19:05:26.787  8288  8315 I Unity   :
    1268. 10-06 19:05:26.787  8288  8315 I Unity   : (Filename: D Line: 0)
    1269. 10-06 19:05:26.787  8288  8315 I Unity   :
    1270. 10-06 19:05:26.788  8288  8315 I Unity   : ####################### switch statement for assent bundle: videos
    1271. 10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1272. 10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1273. 10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1274. 10-06 19:05:26.788  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1275. 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)
    1276. 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)
    1277. 10-06 19:05:26.788  8288  8315 I Unity   :
    1278. 10-06 19:05:26.788  8288  8315 I Unity   : (Filename: D Line: 0)
    1279. 10-06 19:05:26.788  8288  8315 I Unity   :
    1280. 10-06 19:05:26.789  8288  8315 I Unity   : ####################### case: videos
    1281. 10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1282. 10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1283. 10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1284. 10-06 19:05:26.789  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1285. 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)
    1286. 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)
    1287. 10-06 19:05:26.789  8288  8315 I Unity   :
    1288. 10-06 19:05:26.789  8288  8315 I Unity   : (Filename: D Line: 0)
    1289. 10-06 19:05:26.789  8288  8315 I Unity   :
    1290. 10-06 19:05:26.793  8288  8315 I Unity   : Got the following 2 names from asset bundle: videos
    1291. 10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1292. 10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1293. 10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1294. 10-06 19:05:26.793  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1295. 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)
    1296. 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)
    1297. 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)
    1298. 10-06 19:05:26.793  8288  8315 I Unity   :
    1299. 10-06 19:05:26.793  8288  8315 I Unity   : (Filename: D Line: 0)
    1300. 10-06 19:05:26.793  8288  8315 I Unity   :
    1301. 10-06 19:05:26.796  8288  8315 I Unity   : - assets/videos/legend of maui_cc_7_18.mp4
    1302. 10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1303. 10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1304. 10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1305. 10-06 19:05:26.796  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1306. 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)
    1307. 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)
    1308. 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)
    1309. 10-06 19:05:26.796  8288  8315 I Unity   :
    1310. 10-06 19:05:26.796  8288  8315 I Unity   : (Filename: D Line: 0)
    1311. 10-06 19:05:26.796  8288  8315 I Unity   :
    1312. 10-06 19:05:26.797  8288  8315 I Unity   : - assets/videos/moma_loves_mud.mp4
    1313. 10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1314. 10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1315. 10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1316. 10-06 19:05:26.797  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1317. 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)
    1318. 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)
    1319. 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)
    1320. 10-06 19:05:26.797  8288  8315 I Unity   :
    1321. 10-06 19:05:26.797  8288  8315 I Unity   : (Filename: D Line: 0)
    1322. 10-06 19:05:26.797  8288  8315 I Unity   :
    1323. 10-06 19:05:26.799  8288  8315 I Unity   : ####################### LoadVideo called.
    1324. 10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1325. 10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1326. 10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1327. 10-06 19:05:26.799  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1328. 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)
    1329. 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)
    1330. 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)
    1331. 10-06 19:05:26.799  8288  8315 I Unity   :
    1332. 10-06 19:05:26.799  8288  8315 I Unity   : (Filename: D Line: 0)
    1333. 10-06 19:05:26.799  8288  8315 I Unity   :
    1334. 10-06 19:05:26.802  8288  8315 I Unity   : ####################### LoadVideo called...
    1335. 10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1336. 10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1337. 10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1338. 10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1339. 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)
    1340. 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)
    1341. 10-06 19:05:26.802  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1342. 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)
    1343. 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)
    1344. 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)
    1345. 10-06 19:05:26.802  8288  8315 I Unity   : Uni
    1346. 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
    1347. 10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1348. 10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1349. 10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1350. 10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1351. 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)
    1352. 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)
    1353. 10-06 19:05:26.805  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1354. 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)
    1355. 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)
    1356. 10-06 19:05:26.805  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_UnityProject
    1357. 10-06 19:05:26.810  8288  8315 I Unity   : ######################## Successfully loaded video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
    1358. 10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1359. 10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1360. 10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1361. 10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1362. 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)
    1363. 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)
    1364. 10-06 19:05:26.810  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1365. 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)
    1366. 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)
    1367. 10-06 19:05:26.810  8288  8315 I Unity   : <LoadAssetBundle>d__25:MoveNext() (at D:\KIOSK VR 360\KioskVR360_Git\KioskVR360_U
    1368. 10-06 19:05:26.812  8288  8315 I Unity   : ####################### PlayVideo called.
    1369. 10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1370. 10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1371. 10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1372. 10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1373. 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)
    1374. 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)
    1375. 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)
    1376. 10-06 19:05:26.812  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1377. 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)
    1378. 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)
    1379. 10-06 19:05:26.812  8288  8315 I Unity   : <LoadAssetBundle>d__25
    1380. 10-06 19:05:26.817  8288  8315 I Unity   : ###################### Playing video clip: LEGEND OF MAUI_CC_7_18 (UnityEngine.VideoClip)
    1381. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1382. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1383. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1384. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1385. 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)
    1386. 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)
    1387. 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)
    1388. 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)
    1389. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutineManaged2(IEnumerator)
    1390. 10-06 19:05:26.817  8288  8315 I Unity   : UnityEngine.MonoBehaviour:StartCoroutine(IEnumerator) (at /Users/builduser/buildslave/unity/build/Runtime/Export/Script
    1391. 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.
    1392. 10-06 19:05:26.867  8288  8337 W Unity   :
    1393. 10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 328)
    1394. 10-06 19:05:26.867  8288  8337 W Unity   :
    1395. 10-06 19:05:26.867  8288  8337 W Unity   : AndroidVideoMedia: Error opening extractor: -10004
    1396. 10-06 19:05:26.867  8288  8337 W Unity   :
    1397. 10-06 19:05:26.867  8288  8337 W Unity   : (Filename: ./PlatformDependent/AndroidPlayer/Modules/Video/Private/AndroidVideoMedia.cpp Line: 472)
    1398. 10-06 19:05:26.867  8288  8337 W Unity   :
    1399. 10-06 19:05:47.909  8288  8288 I UnityPlayerNativeActivityPico: onPause set cpu 0
    1400. 10-06 19:05:47.909  8288  8288 I UnityPlugin: PVR_SetCpuLevel  level 0
    1401. 10-06 19:05:47.963  8288  8288 I UnityPlayerNativeActivityPico: onPause get iLogicFlow = 0
    1402. 10-06 19:05:47.963  8288  8288 I Unity   : onPause
    1403. 10-06 19:05:47.972  8288  8315 I Unity   : ####################### OnApplicationPause: True
    1404. 10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1405. 10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1406. 10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1407. 10-06 19:05:47.972  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1408. 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)
    1409. 10-06 19:05:47.972  8288  8315 I Unity   :
    1410. 10-06 19:05:47.972  8288  8315 I Unity   : (Filename: D Line: 0)
    1411. 10-06 19:05:47.972  8288  8315 I Unity   :
    1412. 10-06 19:05:47.974  8288  8315 I Unity   : OnApplicationPause-------------------------true
    1413. 10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1414. 10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1415. 10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1416. 10-06 19:05:47.974  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1417. 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)
    1418. 10-06 19:05:47.974  8288  8315 I Unity   :
    1419. 10-06 19:05:47.974  8288  8315 I Unity   : (Filename: D Line: 0)
    1420. 10-06 19:05:47.974  8288  8315 I Unity   :
    1421. 10-06 19:05:47.980  8288  8315 I Unity   : tclogpp Avtivity Pause state is ----- True
    1422. 10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1423. 10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1424. 10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1425. 10-06 19:05:47.980  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1426. 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)
    1427. 10-06 19:05:47.980  8288  8315 I Unity   :
    1428. 10-06 19:05:47.980  8288  8315 I Unity   : (Filename: D Line: 0)
    1429. 10-06 19:05:47.980  8288  8315 I Unity   :
    1430. 10-06 19:05:47.985  8288  8315 I Unity   : Stop home key   Receiver
    1431. 10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1432. 10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1433. 10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1434. 10-06 19:05:47.985  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1435. 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)
    1436. 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)
    1437. 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)
    1438. 10-06 19:05:47.985  8288  8315 I Unity   :
    1439. 10-06 19:05:47.985  8288  8315 I Unity   : (Filename: D Line: 0)
    1440. 10-06 19:05:47.985  8288  8315 I Unity   :
    1441. 10-06 19:05:47.986  8288  8315 I UnityPlugin: EVENT_PAUSE, not VR9
    1442. 10-06 19:05:47.986  8288  8315 I UnityPlugin: PVR_Pause()
    1443. 10-06 19:05:48.012  8288  8315 I UnityPlugin: Pvr_StopSensor_ enter
    1444. 10-06 19:05:48.012  8288  8315 I UnityPlugin: Pvr_StopSensor_ exit
    1445. 10-06 19:05:48.014  8288  8315 D Unity   : Sensor :        Accelerometer ( 1) ; 0.002396 / 0.00s ; BMI160 Accelerometer / BOSCH
    1446. 10-06 19:05:48.015  8288  8288 D UnityPlayerNativeActivityPico: LLLL DismissPresentation
    1447. 10-06 19:05:48.023  8288  8288 I Unity   : windowFocusChanged: false
    1448. 10-06 19:05:48.025  8288  8315 I Unity   : ####################### OnApplicationFocus, hasFocus: False
    1449. 10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1450. 10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1451. 10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1452. 10-06 19:05:48.025  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1453. 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)
    1454. 10-06 19:05:48.025  8288  8315 I Unity   :
    1455. 10-06 19:05:48.025  8288  8315 I Unity   : (Filename: D Line: 0)
    1456. 10-06 19:05:48.025  8288  8315 I Unity   :
    1457. 10-06 19:05:48.027  8288  8315 I Unity   : OnApplicationFocus-------------------------false
    1458. 10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.DebugLogHandler:Internal_Log(LogType, LogOption, String, Object)
    1459. 10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.DebugLogHandler:LogFormat(LogType, Object, String, Object[])
    1460. 10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.Logger:Log(LogType, Object)
    1461. 10-06 19:05:48.027  8288  8315 I Unity   : UnityEngine.Debug:Log(Object)
    1462. 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)
    1463. 10-06 19:05:48.027  8288  8315 I Unity   :
    1464. 10-06 19:05:48.027  8288  8315 I Unity   : (Filename: D Line: 0)
    1465. 10-06 19:05:48.027  8288  8315 I Unity   :
    1466. 10-06 19:05:48.035  2908  2908 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
    1467. 10-06 19:05:48.069  2908  2908 I Shortcut: Home package is com.picovrtob.vrlauncher, activity is com.unity3d.player.UnityPlayerNativeActivityPico
    1468. 10-06 19:05:48.069  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovrtob.vrlauncher,com.unity3d.player.UnityPlayerNativeActivityPico,342
    1469. 10-06 19:05:48.069  2908  2908 I Shortcut: --->RecentTaskInfo--->com.picovr.settings,com.picovr.vrsettingslib.UnityActivity,298
    1470. 10-06 19:05:48.111  2720  2720 D HbClientReceiver: bindHB unityObjectName == null
    1471. 10-06 19:05:48.146  2908  2908 D HbClientReceiver: bindHB unityObjectName == null
    1472. 10-06 19:05:48.181  8288  8315 D Unity   : SetWindow 0 0x0
    1473. 10-06 19:05:53.154  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
    1474. 10-06 19:05:54.301  4070  4070 D ActivityVRFlag: name is com.htc.vr.unity.WVRUnityVRActivity
    1475. 10-06 19:05:56.663   918  3628 I ActivityManager:   Force finishing activity ActivityRecord{ddb061a u0 com.picovrtob.vrlauncher/com.unity3d.player.UnityPlayerNativeActivityPico t342}
    1476.  
     
    Last edited: Oct 7, 2019
  3. Brad-Newman

    Brad-Newman

    Joined:
    Feb 7, 2013
    Posts:
    185
    Found a solution, but will have to wait to post code later. For now, the solution involved using AssetBundle.LoadFromFileAsync instead of UnityWebRequestAssetBundle.GetAssetBundle.
     
  4. ShantiB95

    ShantiB95

    Joined:
    Feb 8, 2017
    Posts:
    17
  5. night533

    night533

    Joined:
    Jan 15, 2015
    Posts:
    7
  6. akhror_unity

    akhror_unity

    Joined:
    Sep 10, 2020
    Posts:
    4
    Code (CSharp):
    1. IEnumerator LoadAssetBundle(string nameOfAssetBundle) {
    2.         var bundleLoadRequest = AssetBundle.LoadFromFileAsync(Path.Combine("pathToAssetBundle", nameOfAssetBundle));
    3.         yield return bundleLoadRequest;
    4.  
    5.         var myLoadedAssetBundle = bundleLoadRequest.assetBundle;
    6.         if (myLoadedAssetBundle == null)
    7.         {
    8.             Debug.Log("Failed to load AssetBundle!");
    9.         }
    10.     }
    in case if you need code to load asset bundle from Assets/StreamingAssets