Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

if i pick a path from my gallery, serialize that, and then use LoadImageAtPath it said that the file path is not found. but if i use the google foto Instead it works #328

Open
DiegoAlejandroSalazar opened this issue Aug 3, 2024 · 20 comments

Comments

@DiegoAlejandroSalazar
Copy link

Description of the bug
i trie to save the path using Application.persistentDataPath and it work on my pc and if i use google photo, but if i take a photo using NativeCamera.TakePicture or NativeGallery.GetImageFromGallery with the android gallery the serialized path does not work.
here the code
this is the filePyckerSystem
private void Start()
{
FinalPath = "";
Permission = NativeFilePicker.Permission.Granted;
GalleryPermission = NativeGallery.Permission.Granted;
CameraPermission = NativeCamera.Permission.Granted;

}
public void LoadFiles()
{
    string FileType = NativeFilePicker.ConvertExtensionToFileType("png,jpg,jpeg");

    if (Permission == NativeFilePicker.Permission.Granted && GalleryPermission == NativeGallery.Permission.Granted)
    {
        NativeGallery.GetImageFromGallery((path) =>
        {
            if (path == null)
            {
                Debug.Log("no file");
                text.text = " no file";
            }
            else
            {
                FinalPath = path;
                Debug.Log("file : " + FinalPath);
                text.text = FinalPath;
                
                LoadImageFromGallery();
                FinalPath = "";
            }
        }, FileType);
    }
}
public void TakePicture()
{
    if (NativeCamera.IsCameraBusy() || !NativeCamera.DeviceHasCamera())
    {
        Debug.Log("No camera or busy");
        return;
    }
    if (CameraPermission == NativeCamera.Permission.Granted)
    {
        NativeCamera.Permission permission = NativeCamera.TakePicture((path) =>
        {
            Debug.Log("Image path: " + path);
            if (path != null)
            {
                FinalPath = path;
                Debug.Log("file : " + FinalPath);
                text.text = FinalPath;
                LoadImageFromCamera();
                FinalPath = "";
            }
            else
            {
                Debug.Log("no file");
                text.text = " no file";
            }
        }, 0);
    }
}
void LoadImageFromGallery()
{
    button.interactable = false;
    Texture2D texture = NativeGallery.LoadImageAtPath(FinalPath, NativeGallery.GetImageProperties(FinalPath).width);
    button.interactable = true;
    NamePrefab.transform.GetChild(6).GetComponent<Image>().sprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f), 100, 0, SpriteMeshType.FullRect, Vector4.zero, false);
    NamePrefab.transform.GetChild(8).GetComponent<TMP_Text>().text = FinalPath;
    //NativeGallery.SaveImageToGallery(texture, FinalPath,"Image.png", ( success, path ) => Debug.Log( "Media save result: " + success + " " + path ));
}
void LoadImageFromCamera()
{
    button.interactable = false;
    Texture2D texture = NativeCamera.LoadImageAtPath(FinalPath, NativeCamera.GetImageProperties(FinalPath).width);
    button.interactable = true;
    NamePrefab.transform.GetChild(6).GetComponent<Image>().sprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f), 100, 0, SpriteMeshType.FullRect, Vector4.zero, false);
    NamePrefab.transform.GetChild(8).GetComponent<TMP_Text>().text = FinalPath;
}

for the save i just put i a json file some variables between here a string with the path.

  • Unity version: e.g. 2022.3.29f1
  • Platform: *Android
  • Device: *OPPO A74 5g
  • How did you download the plugin: Package Managere

thanks in advance ( sorry for theEnglish not my native language)

@yasirkula
Copy link
Owner

At first glance, your code looks good to me. Can you try the example code? If that doesn't work, I'll need logcat logs but if you test the example code as is, I'm %95 sure that it will work.

@yasirkula
Copy link
Owner

BTW NativeFilePicker.ConvertExtensionToFileType doesn't accept multiple extensions.

@DiegoAlejandroSalazar
Copy link
Author

i rewrite the code like te example but still dosen't work
public void LoadFiles()
{
//string FileType = NativeFilePicker.ConvertExtensionToFileType("png,jpg,jpeg");

    // if (Permission == NativeFilePicker.Permission.Granted && GalleryPermission == NativeGallery.Permission.Granted)
    // {
    if (NativeGallery.IsMediaPickerBusy())
        return;

    NativeGallery.GetImageFromGallery((path) =>
    {
        if (path == null)
        {
            Debug.Log("no file");
            text.text = " no file";
        }
        else
        {
            FinalPath = path;
            Debug.Log("file : " + FinalPath);
            text.text = FinalPath;
            LoadImageFromGallery();
            FinalPath = "";
        }
    });
    // }
}

void LoadImageFromGallery()
{
    button.interactable = false;
    Texture2D texture = NativeGallery.LoadImageAtPath(FinalPath, 512);
    button.interactable = true;
    NamePrefab.transform.GetChild(6).GetComponent<Image>().sprite = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f), 100, 0, SpriteMeshType.FullRect, Vector4.zero, false);
    NamePrefab.transform.GetChild(8).GetComponent<TMP_Text>().text = FinalPath;
    //NativeGallery.SaveImageToGallery(texture, FinalPath,"Image.png", ( success, path ) => Debug.Log( "Media save result: " + success + " " + path ));
}

i also put 512 like the example but still.
I think that the gallery that the application open is like a different or a temporary one idk, same for the photo take from camera becose the path said that it stored in the app cache so i think that the problem, it cannot find it becouse when i close the app the chace it empties probably ( idk ).

Can a solution be to save the photo i pick from gallery or from camera to the google photo ? although it will be stupid becouse it will be like having 2 identical photos

@DiegoAlejandroSalazar
Copy link
Author

ok now i dont know what i touched but the camera photo works, now the only problem is the phone gallery

@DiegoAlejandroSalazar
Copy link
Author

ye both the path of the google photo and the camera photo are inside the application cache instead hte path of the phone gallery is not so im pretty sure thats the problem

@yasirkula
Copy link
Owner

Can you try the example code with no modifications at all, with no transform.GetChild calls or GetComponent calls? Just as is.

@DiegoAlejandroSalazar
Copy link
Author

I already tried that but il still don't work idk what to do anymore

@yasirkula
Copy link
Owner

Can you check logcat logs? You can use Unity's Logcat package for that.

@DiegoAlejandroSalazar
Copy link
Author

DiegoAlejandroSalazar commented Aug 4, 2024

0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of main
2024/08/04 23:34:50.077 32340 32340 Error Zygote GL_OOM open gloom_va_feature failed, errno:2
2024/08/04 23:34:50.107 32340 32340 Info PuntiFragolaApp Late-enabling -Xcheck:jni
2024/08/04 23:34:50.184 32340 32340 Error PuntiFragolaApp Unknown bits set in runtime_flags: 0x40000000
2024/08/04 23:34:50.184 32340 32340 Info PuntiFragolaApp Using CollectorTypeCC GC.
2024/08/04 23:34:50.258 32340 32340 Info OneTrace Mark active for pid=32340? true
2024/08/04 23:34:50.259 32340 32340 Debug cutils-dev otrace_set_tracing_enabled? true
2024/08/04 23:34:50.276 32340 32368 Debug cutils-dev properties changed in otrace_seq_number_changed!
2024/08/04 23:34:50.361 32340 32340 Debug CompatibilityChangeReporter Compat change id reported: 171979766; UID 10613; state: ENABLED
2024/08/04 23:34:50.361 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl get feature:IOplusAutoResolutionFeature
2024/08/04 23:34:50.362 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl getOplusAutoResolutionFeature
2024/08/04 23:34:50.435 32340 32340 Info OplusFeatureCache Milliseconds spent on init(): 73
2024/08/04 23:34:50.438 32340 32340 Debug CompactWindowAppManager initCompactApplicationInfo 
2024/08/04 23:34:50.517 32340 32340 Warn libc Access denied finding property "ro.odm.prev.product.name"
0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of system
2024/08/04 23:34:50.518 32340 32340 Warn ActivityThread Application com.DefaultCompany.PuntiFragolaApp can be debugged on port 8100...
2024/08/04 23:34:50.520 32340 32340 Debug LoadedApk mApplicationInfo overrideDisplayId:null
2024/08/04 23:34:50.522 32340 32340 Warn ziparchive Unable to open '/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.dm': No such file or directory
2024/08/04 23:34:50.522 32340 32340 Warn ziparchive Unable to open '/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.dm': No such file or directory
2024/08/04 23:34:50.541 32340 32340 Debug nativeloader Configuring clns-4 for other apk /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk. target_sdk_version=33, uses_libraries=, library_path=/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/lib/arm:/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk!/lib/armeabi-v7a, permitted_path=/data:/mnt/expand:/data/user/0/com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:34:50.608 32340 32340 Verbose GraphicsEnvironment ANGLE Developer option for 'com.DefaultCompany.PuntiFragolaApp' set to: 'default'
2024/08/04 23:34:50.608 32340 32340 Verbose GraphicsEnvironment ANGLE GameManagerService for com.DefaultCompany.PuntiFragolaApp: false
2024/08/04 23:34:50.608 32340 32340 Verbose GraphicsEnvironment Neither updatable production driver nor prerelease driver is supported.
2024/08/04 23:34:50.614 32340 32340 Debug NetworkSecurityConfig No Network Security Config specified, using platform default
2024/08/04 23:34:50.616 32340 32340 Debug NetworkSecurityConfig No Network Security Config specified, using platform default
2024/08/04 23:34:50.627 32340 32340 Debug OplusActivityManager get AMS extension: android.os.BinderProxy@b1a9daf
2024/08/04 23:34:50.695 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl Unknow feature:IOplusTextViewRTLUtilForUG
2024/08/04 23:34:50.769 32340 32340 Warn GameSDKManager gamesdk system service is not available
2024/08/04 23:34:50.799 32340 32340 Info Mono JNI_OnLoad called
2024/08/04 23:34:50.799 32340 32340 Debug Unity CommandLine:  
2024/08/04 23:34:50.829 32340 32340 Info Unity onResume
2024/08/04 23:34:50.838 32340 32340 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:34:50.846 32340 32340 Debug ExtensionsLoader createInstance(32bit) : createExtendedFactory
2024/08/04 23:34:50.847 32340 32340 Debug ExtensionsLoader Opened libSchedAssistExtImpl.so
2024/08/04 23:34:50.848 32340 32340 Error PuntiFragolaApp ofbOpen failed with error=No such file or directory
2024/08/04 23:34:50.848 32340 32340 Error PuntiFragolaApp sysOpen failed with error=No such file or directory
2024/08/04 23:34:50.854 32340 32340 Debug OplusGraphicsEvent OplusGraphicsEventListener create now!
2024/08/04 23:34:50.855 32340 32340 Debug OplusGraphicsEvent addEventListener success!
2024/08/04 23:34:50.856 32340 32340 Debug OplusInputMethodUtil init sDebug to false, init sDebugIme to false, init sAlwaysOn to false
2024/08/04 23:34:50.856 32340 32340 Debug OplusInputMethodUtil updateDebugToClass InputMethodManager.DEBUG = false
2024/08/04 23:34:50.857 32340 32340 Debug OplusInputMethodUtil updateDebugToClass ImeFocusController.DEBUG = false
2024/08/04 23:34:50.857 32340 32340 Debug OplusInputMethodUtil updateDebugToClass BaseInputConnection.DEBUG = false
2024/08/04 23:34:50.857 32340 32413 Warn ziparchive Unable to open '/system/framework/QXPerformance.dm': No such file or directory
2024/08/04 23:34:50.857 32340 32413 Warn ziparchive Unable to open '/system/framework/QXPerformance.dm': No such file or directory
2024/08/04 23:34:50.857 32340 32340 Debug OplusInputMethodUtil updateDebugToClass ImeFocusController.sDebugIme = false
2024/08/04 23:34:50.868 32340 32340 Debug WindowManager Add to mViews: DecorView@f34509f[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:34:50.870 32340 32415 Info OplusSlideAnimOptHelper checkListMode: is blacklist mode = true
2024/08/04 23:34:50.871 32340 32415 Debug OplusSlideAnimOptHelper com.DefaultCompany.PuntiFragolaApp scrollEffectOpt enable = true
2024/08/04 23:34:50.899 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@fcabaa2
2024/08/04 23:34:50.901 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:34:50.905 32340 32340 Info Quality Skipped: false 1 cost 26.970743 refreshRate 16656184 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:34:50.908 32340 32340 Info SurfaceView 159056691 onAttachedToWindow
2024/08/04 23:34:50.938 32340 32340 Debug BufferQueueConsumer [](id:7e5400000000,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:34:50.939 32340 32340 Debug ExtensionsLoader createInstance(32bit) : createExtendedFactory
2024/08/04 23:34:50.940 32340 32340 Debug ExtensionsLoader Opened libSchedAssistExtImpl.so
2024/08/04 23:34:50.941 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.255086751
2024/08/04 23:34:50.957 32340 32340 Debug BufferQueueConsumer [](id:7e5400000001,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:34:50.958 32340 32340 Info SurfaceView 159056691 visibleChanged -- surfaceCreated 
2024/08/04 23:34:50.958 32340 32340 Info SurfaceView 159056691 surfaceChanged -- format=4 w=1080 h=2290
2024/08/04 23:34:50.959 32340 32410 Debug Unity SetWindow 0 0xecb0a408
2024/08/04 23:34:50.959 32340 32410 Debug Unity SetWindow 0 0xecb0a408
2024/08/04 23:34:50.960 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:34:50.960 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#0(BLAST Consumer)0](id:7e5400000000,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:34:51.000 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:34:51.002 32340 32340 Info Quality Skipped: false 5 cost 89.854965 refreshRate 16656281 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:34:51.010 32340 32422 Debug OplusWindowManager get WMS extension: android.os.BinderProxy@aacfbfa
2024/08/04 23:34:51.014 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:34:51.027 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:34:51.028 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:34:51.030 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:34:51.071 32340 32410 Info Unity MemoryManager: Using 'Dynamic Heap' Allocator.
2024/08/04 23:34:51.071 32340 32410 Debug Unity [UnityMemory] Configuration Parameters - Can be set up in boot.config
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-allocator-temp-initial-block-size-main=262144"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-allocator-temp-initial-block-size-worker=262144"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-bucket-allocator-granularity=16"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-bucket-allocator-bucket-count=8"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-bucket-allocator-block-size=4194304"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-bucket-allocator-block-count=1"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-main-allocator-block-size=16777216"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-thread-allocator-block-size=16777216"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-gfx-main-allocator-block-size=16777216"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-gfx-thread-allocator-block-size=16777216"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-cache-allocator-block-size=4194304"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-typetree-allocator-block-size=2097152"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-bucket-allocator-granularity=16"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-bucket-allocator-bucket-count=8"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-bucket-allocator-block-size=4194304"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-bucket-allocator-block-count=1"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-allocator-block-size=16777216"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-profiler-editor-allocator-block-size=1048576"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-main=4194304"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-job-temp-allocator-block-size=2097152"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-job-temp-allocator-block-size-background=1048576"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-job-temp-allocator-reduction-small-platforms=262144"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-background-worker=32768"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-job-worker=262144"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-preload-manager=262144"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-nav-mesh-worker=65536"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-audio-worker=65536"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-cloud-worker=32768"
2024/08/04 23:34:51.071 32340 32410 Debug Unity     "memorysetup-temp-allocator-size-gfx=262144"
2024/08/04 23:34:51.090 32340 32410 Debug Unity Enabling Unity systrace
2024/08/04 23:34:51.093 32340 32410 Warn PuntiFragolaApp Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (unsupported, reflection, allowed)
2024/08/04 23:34:51.127 32340 32410 Debug Unity [VFS] Mount /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk
2024/08/04 23:34:51.128 32340 32410 Debug Unity Loading player data from /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/data.unity3d
2024/08/04 23:34:51.171 32340 32410 Info Unity SystemInfo CPU = ARM64 FP ASIMD AES, Cores = 8, Memory = 5480mb
2024/08/04 23:34:51.171 32340 32410 Info Unity SystemInfo ARM big.LITTLE configuration: 2 big (mask: 0xc0), 6 little (mask: 0x3f)
2024/08/04 23:34:51.171 32340 32410 Info Unity ApplicationInfo com.DefaultCompany.PuntiFragolaApp version 1.1
2024/08/04 23:34:51.171 32340 32410 Info Unity Built from '2022.3/staging' branch, Version '2022.3.29f1 (8d510ca76d2b)', Build type 'Development', Scripting Backend 'mono', CPU 'armeabi-v7a', Stripping 'Disabled'
2024/08/04 23:34:51.173 32340 32410 Debug Unity Mono path[0] = '/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/Managed'
2024/08/04 23:34:51.173 32340 32410 Debug Unity Mono config path = 'assets/bin/Data/Managed/etc'
2024/08/04 23:34:51.194 32340 32340 Info SurfaceView 159056691 surfaceChanged -- format=4 w=1080 h=2400
2024/08/04 23:34:51.318 32340 32410 Debug Unity [EGL] Attaching window :0xecb0a408
2024/08/04 23:34:51.319 32340 32410 Debug Unity InitializeScriptEngine OK (0xe8c29e80)
2024/08/04 23:34:51.320 32340 32410 Debug Unity Found 3 interfaces on host :
2024/08/04 23:34:51.320 32340 32410 Debug Unity  0) 10.10.41.80
2024/08/04 23:34:51.320 32340 32410 Debug Unity  1) 10.184.211.76
2024/08/04 23:34:51.320 32340 32410 Debug Unity  2) 192.168.1.9
2024/08/04 23:34:51.320 32340 32410 Debug Unity 
2024/08/04 23:34:51.322 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:34:51.322 32340 32410 Debug Unity 
2024/08/04 23:34:51.338 32340 32410 Debug Unity [Physics::Module] Initialized MultithreadedJobDispatcher with 2 workers.
2024/08/04 23:34:51.340 32340 32410 Debug Unity Loading player data from assets/bin/Data/data.unity3d
2024/08/04 23:34:51.341 32340 32410 Debug Unity PlayerInitEngineNoGraphics OK
2024/08/04 23:34:51.341 32340 32410 Info Unity Company Name: DefaultCompany
2024/08/04 23:34:51.341 32340 32410 Info Unity Product Name: PuntiFragolaApp
2024/08/04 23:34:51.341 32340 32410 Debug Unity AndroidGraphics::Startup window =  0xecb0a408
2024/08/04 23:34:51.341 32340 32410 Debug Unity [EGL] Attaching window :0xecb0a408
2024/08/04 23:34:51.344 32340 32410 Debug Unity [Subsystems] Discovering subsystems at path /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/UnitySubsystems
2024/08/04 23:34:51.344 32340 32410 Debug Unity [Subsystems] 1 'inputs' descriptors matched in /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/UnitySubsystems/UnityARCore/UnitySubsystemsManifest.json
2024/08/04 23:34:51.344 32340 32410 Debug Unity [Subsystems] No descriptors matched for  displays in /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/UnitySubsystems/UnityARCore/UnitySubsystemsManifest.json.
2024/08/04 23:34:51.344 32340 32410 Debug Unity [Subsystems] No descriptors matched for  meshings in /data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk/assets/bin/Data/UnitySubsystems/UnityARCore/UnitySubsystemsManifest.json.
2024/08/04 23:34:51.402 32340 32410 Debug vulkan searching for layers in '/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/lib/arm'
2024/08/04 23:34:51.402 32340 32410 Debug vulkan searching for layers in '/data/app/~~PCjOWdlyyiSDAmPBZglHsg==/com.DefaultCompany.PuntiFragolaApp-XJgSdT-Opd_avRjjdl3SMQ==/base.apk!/lib/armeabi-v7a'
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: count=12
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_debug_report [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_swapchain_colorspace [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_GOOGLE_surfaceless_query [enabled=0, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_android_surface [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_device_group_creation [enabled=0, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_fence_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_memory_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_semaphore_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_get_physical_device_properties2 [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_get_surface_capabilities2 [enabled=0, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_surface [enabled=1, external=0]
2024/08/04 23:34:51.402 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_surface_protected_capabilities [enabled=0, external=0]
2024/08/04 23:34:51.454 32340 32410 Info AdrenoVK-0 ===== BEGIN DUMP OF OVERRIDDEN SETTINGS =====
2024/08/04 23:34:51.454 32340 32410 Info AdrenoVK-0 ===== END DUMP OF OVERRIDDEN SETTINGS =====
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 QUALCOMM build          : badfd2c428, Ic89c6ea852
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Build Date              : 07/14/21
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Shader Compiler Version : EV031.35.01.09
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Local Branch            : 
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Remote Branch           : 
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Remote Branch           : 
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Reconstruct Branch      : 
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Build Config            : S P 10.0.7 AArch32
2024/08/04 23:34:51.456 32340 32410 Info AdrenoVK-0 Driver Path             : /vendor/lib/hw/vulkan.adreno.so
2024/08/04 23:34:51.458 32340 32410 Debug Unity [Vulkan init] SelectPhysicalDevice requestedDeviceIndex=-1 xrDevice=0x0
2024/08/04 23:34:51.458 32340 32410 Debug Unity [Vulkan init] Physical Device 0xb0c8da30 [0]: "Adreno (TM) 619" deviceType=1 vendorID=5143 deviceID=6010900
2024/08/04 23:34:51.458 32340 32410 Debug Unity Vulkan detection: 2
2024/08/04 23:34:51.458 32340 32410 Debug Unity GfxDevice: creating device client; threaded=1; jobified=0
2024/08/04 23:34:51.458 32340 32410 Debug Unity [Vulkan init] extensions: count=12
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_debug_report [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_swapchain_colorspace [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_GOOGLE_surfaceless_query [enabled=0, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_android_surface [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_device_group_creation [enabled=0, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_fence_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_memory_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_semaphore_capabilities [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_get_physical_device_properties2 [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_get_surface_capabilities2 [enabled=0, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_surface [enabled=1, external=0]
2024/08/04 23:34:51.459 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_surface_protected_capabilities [enabled=0, external=0]
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 QUALCOMM build          : badfd2c428, Ic89c6ea852
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Build Date              : 07/14/21
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Shader Compiler Version : EV031.35.01.09
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Local Branch            : 
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Remote Branch           : 
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Remote Branch           : 
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Reconstruct Branch      : 
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Build Config            : S P 10.0.7 AArch32
2024/08/04 23:34:51.461 32340 32410 Info AdrenoVK-0 Driver Path             : /vendor/lib/hw/vulkan.adreno.so
2024/08/04 23:34:51.478 32340 32410 Debug Unity [Vulkan init] SelectPhysicalDevice requestedDeviceIndex=-1 xrDevice=0x0
2024/08/04 23:34:51.478 32340 32410 Debug Unity [Vulkan init] Physical Device 0xb0c8da28 [0]: "Adreno (TM) 619" deviceType=1 vendorID=5143 deviceID=6010900
2024/08/04 23:34:51.478 32340 32410 Debug Unity [Vulkan init] Selected physical device 0xb0c8da28
2024/08/04 23:34:51.478 32340 32410 Debug Unity [Vulkan init] Graphics queue count=1
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: count=61
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_ANDROID_external_memory_android_hardware_buffer [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_blend_operation_advanced [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_device_memory_report [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_global_priority [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_host_query_reset [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_image_robustness [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_index_type_uint8 [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_line_rasterization [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_pipeline_creation_cache_control [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_pipeline_creation_feedback [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_private_data [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_queue_family_foreign [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_sampler_filter_minmax [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_scalar_block_layout [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_separate_stencil_usage [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_shader_demote_to_helper_invocation [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_subgroup_size_control [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_texture_compression_astc_hdr [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_EXT_vertex_attribute_divisor [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_GOOGLE_display_timing [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_bind_memory2 [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_buffer_device_address [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_create_renderpass2 [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_dedicated_allocation [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_descriptor_update_template [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_device_group [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_draw_indirect_count [enabled=0, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_driver_properties [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_fence [enabled=1, external=0]
2024/08/04 23:34:51.479 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_fence_fd [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_memory [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_memory_fd [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_semaphore [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_external_semaphore_fd [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_get_memory_requirements2 [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_image_format_list [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_imageless_framebuffer [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_incremental_present [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_maintenance1 [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_maintenance2 [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_maintenance3 [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_multiview [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_push_descriptor [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_relaxed_block_layout [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_sampler_mirror_clamp_to_edge [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_sampler_ycbcr_conversion [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_separate_depth_stencil_layouts [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_shader_draw_parameters [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_shader_float16_int8 [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_shader_float_controls [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_shader_subgroup_extended_types [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_shared_presentable_image [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_spirv_1_4 [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_storage_buffer_storage_class [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_swapchain [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_uniform_buffer_standard_layout [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_variable_pointers [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_KHR_vulkan_memory_model [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_QCOM_render_pass_shader_resolve [enabled=0, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_QCOM_render_pass_store_ops [enabled=1, external=0]
2024/08/04 23:34:51.480 32340 32410 Debug Unity [Vulkan init] extensions: name=VK_QCOM_render_pass_transform [enabled=0, external=0]
2024/08/04 23:34:51.483 32340 32410 Debug Unity Vulkan API version 1.1.0 (1.1.128 supported by driver, 1.1.0 requested)
2024/08/04 23:34:51.483 32340 32410 Debug Unity Vulkan vendor=[Qualcomm] id=[5143]
2024/08/04 23:34:51.483 32340 32410 Debug Unity Vulkan renderer=[Adreno (TM) 619] id=[6010900]
2024/08/04 23:34:51.483 32340 32410 Debug Unity Vulkan device type 1
2024/08/04 23:34:51.483 32340 32410 Debug Unity Vulkan driverversion=[512.530.0] uint=[-2145312768]
2024/08/04 23:34:51.484 32340 32410 Debug Unity VK use pretransform: 0
2024/08/04 23:34:51.500 32340 32410 Debug Unity Vulkan PSO: Cache data successfully loaded [size=74561,path=/storage/emulated/0/Android/data/com.DefaultCompany.PuntiFragolaApp/cache/vulkan_pso_cache.bin]
2024/08/04 23:34:51.503 32340 32410 Debug Unity [EGL] Attaching window :0x0
2024/08/04 23:34:51.503 32340 32410 Debug Unity AndroidDisplayManagerVulkan::AttachWindow(0xecb0a408, 0)
2024/08/04 23:34:51.504 32340 32410 Debug Unity InitializeOrResetSwapChain 1080x2400 hdr=0 samples=0
2024/08/04 23:34:51.507 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:34:51.508 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:34:51.509 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:34:51.509 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:34:51.509 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:34:51.509 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:34:51.509 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:34:51.509 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:34:51.510 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:34:51.510 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:34:51.510 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:34:51.510 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:34:51.510 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:34:51.510 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:34:51.510 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:34:51.510 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:34:51.510 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:34:51.552 32340 32483 Debug Choreographer Attaching thread to JVM for AChoreographer
2024/08/04 23:34:51.556 32340 32410 Verbose SwappyVk SwappyVk initialized for VkDevice 0xb0c8d9f8 using VK_GOOGLE_display_timing on Android
2024/08/04 23:34:51.557 32340 32410 Info SwappyVk Returning refresh duration of 16666666 nsec (approx 60.000002 Hz)
2024/08/04 23:34:51.576 32340 32410 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:34:51.577 32340 32410 Info MediaRouter Skip setBluetoothA2dpOn(): types=8388615, isPlaybackActive()=false, BT route=null
2024/08/04 23:34:51.579 32340 32410 Debug Unity AndroidDisplayManagerVulkan::AttachWindow(0xecb0a408, 0)
2024/08/04 23:34:51.579 32340 32410 Debug Unity Initialize engine version: 2022.3.29f1 (8d510ca76d2b)
2024/08/04 23:34:51.601 32340 32410 Warn AidlConversion aidl2legacy_AudioChannelLayout_audio_channel_mask_t: no legacy output audio_channel_mask_t found for AudioChannelLayout{layoutMask: 16}
2024/08/04 23:34:51.627 32340 32410 Debug PuntiFragolaApp PlayerBase::PlayerBase()
2024/08/04 23:34:51.629 32340 32410 Debug PuntiFragolaApp TrackPlayerBase::TrackPlayerBase()
2024/08/04 23:34:51.629 32340 32410 Info libOpenSLES android_audioPlayer_realize, channel mask 0x3
2024/08/04 23:34:51.629 32340 32410 Info libOpenSLES android_audioPlayer_realize, create default channel mask 0x3, channels 2
2024/08/04 23:34:51.629 32340 32410 Info libOpenSLES Emulating old channel mask behavior (ignoring positional mask 0x3, using default mask 0x3 based on channel count of 2)
2024/08/04 23:34:51.630 32340 32410 Debug AudioTrackExtImpl AudioTrackExtImpl init
2024/08/04 23:34:51.630 32340 32410 Debug AudioTrack set(): streamType 3, sampleRate 48000, format 0x1, channelMask 0x3, frameCount 0, flags #104, notificationFrames -10, sessionId 28177, transferType 0, uid -1, pid -1
2024/08/04 23:34:51.630 32340 32410 Warn AudioTrack set(): notificationFrames=-10 clamped to the range -1 to -8
2024/08/04 23:34:51.630 32340 32410 Info AudioTrack set(): 0xa9097800, Create AudioTrackThread, tid = 32492
2024/08/04 23:34:51.683 32340 32410 Error AudioSystem invalid attributes { Content type: AUDIO_CONTENT_TYPE_UNKNOWN Usage: AUDIO_USAGE_UNKNOWN Source: AUDIO_SOURCE_DEFAULT Flags: 0x0 Tags:  } when converting to stream
2024/08/04 23:34:51.696 32340 32410 Info AudioTrack createTrack_l(0): AUDIO_OUTPUT_FLAG_FAST successful; frameCount 0 -> 1536
2024/08/04 23:34:51.696 32340 32410 Info AudioTrack createTrack_l(5072) on outputId(13) : 0xa9097800, mCblk = 0xe92fd000,  mLatency = 80, mAfLatency = 48, frameCount = 1536, mSampleRate = 48000, mFlags = 0x4, mReqFrameCount = 1536, mNotificationFramesAct = 192
2024/08/04 23:34:51.703 32340 32410 Debug ListServiceUtils mListServiceUtils::init CallingPid 32340
2024/08/04 23:34:51.703 32340 32410 Debug ListServiceUtils mListServiceUtils::init this 0xa90b87a0
2024/08/04 23:34:51.704 32340 32410 Verbose ListServiceUtils checkInListByUid module:audio-choppy-boost uid:10613 cost 192us return (null)
2024/08/04 23:34:51.704 32340 32410 Verbose ListServiceUtils checkInListByUid start module:change-futex-timeout uid:10613  time 282649858686us
2024/08/04 23:34:51.704 32340 32410 Verbose ListServiceUtils checkInListByUid end module:change-futex-timeout uid:10613  time 282649858813us
2024/08/04 23:34:51.704 32340 32410 Debug ListServiceUtils checkInListByUid module:change-futex-timeout uid:10613 cost 125us return 0
2024/08/04 23:34:51.705 32340 32410 Debug AudioTrack start(5072): prior state:STATE_STOPPED output 13 stream 3 session 28177
2024/08/04 23:34:51.708 32340 32340 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:34:51.708 32340 32340 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:34:51.715 32340 32410 Debug AudioTrackExtImpl setAudioBoostTid
2024/08/04 23:34:51.715 32340 32410 Debug AudioTrackExtImpl oplusDumpValue PID is 32340  Tid is 32410
2024/08/04 23:34:51.720 32340 32410 Debug Unity Begin MonoManager ReloadAssembly
2024/08/04 23:34:52.020 32340 32410 Info MONO Getting locale
2024/08/04 23:34:52.020 32340 32410 Info Mono Locale it-IT
2024/08/04 23:34:52.295 32340 32410 Debug Unity - Loaded All Assemblies, in  0.575 seconds
2024/08/04 23:34:52.305 32340 32410 Debug Unity - Finished resetting the current domain, in  0.010 seconds
2024/08/04 23:34:52.639 32340 32410 Warn Unity The referenced script (Unknown) on this Behaviour is missing!
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #2 0xbcdaf7cf (libunity.so) SerializableManagedRef::RebuildMonoInstance(Object*, ScriptingClassPtr, ScriptingObjectPtr, MonoScript*) 0xbe
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #3 0xbcdb4e29 (libunity.so) PersistentManager::ProduceObject(SerializedFile&, SerializedObjectIdentifier, int, ObjectCreationMode, PersistentManager::LockFlags) 0x240
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #4 0xbcdb4baf (libunity.so) PersistentManager::CreateThreadActivationQueueEntry(SerializedFile&, SerializedObjectIdentifier, int, bool, PersistentManager::LockFlags) 0x72
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #5 0xbcdb5017 (libunity.so) PersistentManager::ReadAndActivateObjectThreaded(int, SerializedObjectIdentifier const&, SerializedFile*, bool, bool, PersistentManager::LockFlags) 0x72
2024/08/04 23:34:52.639 32340 32410 Warn Unity  #6 0xbcdb562d (libunity.so) PersistentManager::LoadFileCompletelyThreaded(core::basic_string_ref<char>, long long*, int*, int, PersistentManager::LoadFlags, LoadPr
2024/08/04 23:34:52.640 32340 32410 Warn Unity The referenced script on this Behaviour (Game Object '<null>') is missing!
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #2 0xbcd65123 (libunity.so) ManagedMonoBehaviourRef::DoScriptRebuildWarning(Object*) 0xa2
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #3 0xbcdb0333 (libunity.so) void SerializableManagedRefTransfer::TransferEngineAndMonoInstance<StreamedBinaryRead>(Object*, SerializableManagedRef&, StreamedBinaryRead&, bool) 0x20
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #4 0xbcdb02fb (libunity.so) SerializableManagedRefTransfer::Transfer(Object*, SerializableManagedRef&, StreamedBinaryRead&, bool) 0x8
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #5 0xbcd70b1f (libunity.so) void MonoBehaviour::Transfer<StreamedBinaryRead>(StreamedBinaryRead&, bool) 0x1a
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #6 0xbcd6bb67 (libunity.so) ManagedObjectHostTransferRedirect<MonoBehaviour>::Transfer(MonoBehaviour&, StreamedBinaryRead&) 0x1a
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #7 0xbcdba825 (libunity.so) SerializedFile::ReadObject(long long, ObjectCreationMode, bool, TypeTree const**, bool*, Object&, CacheReaderBase*) const 0x47c
2024/08/04 23:34:52.640 32340 32410 Warn Unity  #8 0xb
2024/08/04 23:34:53.034 32340 32410 Debug Unity Failed to load native plugin: Unable to lookup library path for '_burst_0_0'.
2024/08/04 23:34:53.061 32340 32410 Debug Unity PlayerInitEngineGraphics OK
2024/08/04 23:34:53.063 32340 32410 Debug Unity New input system (experimental) initialized
2024/08/04 23:34:53.080 32340 32410 Debug Unity Found 22 native sensors
2024/08/04 23:34:53.084 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:34:53.086 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:34:53.086 32340 32410 Debug Unity enabled Accelerometer sensor
2024/08/04 23:34:53.110 32340 32340 Info Unity onPause
2024/08/04 23:34:55.113 32340 32340 Warn Unity Timeout (2000 ms) while trying to pause the Unity Engine.
2024/08/04 23:34:55.115 32340 32340 Info Quality ActivityThread: activityPause delay 2004 com.DefaultCompany.PuntiFragolaApp 32340
2024/08/04 23:34:55.125 32340 32340 Error ANR_LOG >>> msg's executing time is too long
2024/08/04 23:34:55.125 32340 32340 Error ANR_LOG Blocked msg = { when=-2s13ms what=159 target=android.app.ActivityThread$H obj=android.app.servertransaction.ClientTransaction@3f509c64 } , cost  = 2008 ms
2024/08/04 23:34:55.125 32340 32340 Error ANR_LOG >>>Current msg List is:
2024/08/04 23:34:55.126 32340 32340 Error ANR_LOG Current msg <1> = { when=-2s6ms what=0 target=android.os.Handler callback=com.unity3d.player.UnityPlayer$d }
2024/08/04 23:34:55.126 32340 32340 Error ANR_LOG Current msg <2> = { when=-1s319ms what=29 target=android.view.ViewRootImpl$ViewRootHandler obj=com.android.internal.os.SomeArgs@573558b }
2024/08/04 23:34:55.127 32340 32340 Error ANR_LOG Current msg <3> = { when=-1s301ms what=4 target=android.view.ViewRootImpl$ViewRootHandler obj=com.android.internal.os.SomeArgs@aadf668 }
2024/08/04 23:34:55.127 32340 32340 Error ANR_LOG Current msg <4> = { when=-1s286ms what=4 target=android.view.inputmethod.InputMethodManager$H obj=false }
2024/08/04 23:34:55.127 32340 32340 Error ANR_LOG Current msg <5> = { when=-1s286ms what=3 target=android.view.inputmethod.InputMethodManager$H arg1=6320 arg2=1 }
2024/08/04 23:34:55.128 32340 32340 Error ANR_LOG Current msg <6> = { when=-1s269ms what=29 target=android.view.ViewRootImpl$ViewRootHandler obj=com.android.internal.os.SomeArgs@995ca81 }
2024/08/04 23:34:55.128 32340 32340 Error ANR_LOG Current msg <7> = { when=-1s258ms what=159 target=android.app.ActivityThread$H obj=android.app.servertransaction.ClientTransaction@bcf63ca4 }
2024/08/04 23:34:55.129 32340 32340 Error ANR_LOG Current msg <8> = { when=-1s252ms what=159 target=android.app.ActivityThread$H obj=android.app.servertransaction.ClientTransaction@e40bbb31 }
2024/08/04 23:34:55.130 32340 32340 Error ANR_LOG Current msg <9> = { when=-1s229ms what=29 target=android.view.ViewRootImpl$ViewRootHandler obj=com.android.internal.os.SomeArgs@940b726 }
2024/08/04 23:34:55.130 32340 32340 Error ANR_LOG Current msg <10> = { when=-1s211ms what=4 target=android.view.ViewRootImpl$ViewRootHandler obj=com.android.internal.os.SomeArgs@5bfbf67 }
2024/08/04 23:34:55.130 32340 32340 Error ANR_LOG >>>CURRENT MSG DUMP OVER<<<
2024/08/04 23:34:55.131 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:34:55.132 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:34:55.165 32340 32340 Debug CompatibilityChangeReporter Compat change id reported: 78294732; UID 10613; state: ENABLED
2024/08/04 23:34:55.167 32340 32340 Info Unity android.permission.WRITE_EXTERNAL_STORAGE denied.
2024/08/04 23:34:55.168 32340 32410 Debug Unity User denied external storage write permission.
2024/08/04 23:34:55.169 32340 32340 Info Unity onResume
2024/08/04 23:34:55.170 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:34:55.170 32340 32340 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:34:55.171 32340 32410 Debug Unity SetWindow 0 0xecb0a408
2024/08/04 23:34:55.173 32340 32410 Debug Unity Vulkan PSO: Pipeline cache has not changed skipping save handle[b9a18190]
2024/08/04 23:34:55.182 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:34:55.182 32340 32410 Debug PuntiFragolaApp PlayerBase::stop() from IPlayer
2024/08/04 23:34:55.182 32340 32410 Debug AudioTrack stop(5072): prior state:STATE_ACTIVE output 13 stream 3 session 28177
2024/08/04 23:34:55.182 32340 32410 Debug AudioTrack stop(5072): called with 160320 frames delivered
2024/08/04 23:34:55.183 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid
2024/08/04 23:34:55.183 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid  pid 32340  tid 32410
2024/08/04 23:34:55.183 32340 32410 Info AudioTrack stop(5072): 0xa9097800 stop done
2024/08/04 23:34:55.186 32340 32340 Info Quality Skipped: false 1 cost 18.06026 refreshRate 16658546 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:34:55.189 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:34:55.190 32340 32410 Debug Unity AndroidDisplayManagerVulkan::AttachWindow(0xecb0a408, 0)
2024/08/04 23:34:55.196 32340 32410 Debug Unity InitializeOrResetSwapChain 1080x2400 hdr=0 samples=0
2024/08/04 23:34:55.206 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:34:55.206 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:34:55.208 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:34:55.208 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:34:55.208 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:34:55.208 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:34:55.208 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:34:55.211 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:34:55.211 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:34:55.212 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:34:55.212 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:34:55.212 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:34:55.212 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:34:55.212 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:34:55.212 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:34:55.212 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:34:55.212 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:34:55.212 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:34:55.223 32340 32410 Verbose SwappyVk SwappyVk initialized for VkDevice 0xb0c8d9f8 using VK_GOOGLE_display_timing on Android
2024/08/04 23:34:55.224 32340 32410 Info SwappyVk Returning refresh duration of 16666666 nsec (approx 60.000002 Hz)
2024/08/04 23:34:57.297 32340 32410 Debug Unity UnloadTime: 3.680260 ms
2024/08/04 23:34:57.347 32340 32410 Info Unity [Adaptive Performance] Adaptive Performance is disabled via Settings.
2024/08/04 23:34:57.347 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:57.347 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:57.347 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:57.347 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:57.347 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:57.347 32340 32410 Info Unity 
2024/08/04 23:34:58.547 32340 32410 Info Unity path : /storage/emulated/0/Android/data/com.DefaultCompany.PuntiFragolaApp/files/SaveData.txt
2024/08/04 23:34:58.547 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:58.547 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:58.547 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:58.547 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:58.547 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:58.547 32340 32410 Info Unity 
2024/08/04 23:34:59.018 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:34:59.018 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:59.018 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:59.018 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:59.018 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:59.018 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:59.018 32340 32410 Info Unity 
2024/08/04 23:34:59.066 32340 32410 Info Unity {
2024/08/04 23:34:59.066 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:34:59.066 32340 32410 Info Unity   "$values": []
2024/08/04 23:34:59.066 32340 32410 Info Unity }
2024/08/04 23:34:59.066 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:59.066 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:59.066 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:59.066 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:59.066 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:59.066 32340 32410 Info Unity 
2024/08/04 23:34:59.091 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:34:59.093 32340 32410 Debug AudioTrack start(5072): prior state:STATE_STOPPED output 13 stream 3 session 28177
2024/08/04 23:34:59.099 32340 32410 Debug AudioTrackExtImpl setAudioBoostTid
2024/08/04 23:34:59.100 32340 32410 Debug AudioTrackExtImpl oplusDumpValue PID is 32340  Tid is 32410
2024/08/04 23:34:59.104 32340 32340 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:34:59.105 32340 32340 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:34:59.107 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:34:59.107 32340 32410 Debug Unity Choreographer available: Enabling VSYNC timing
2024/08/04 23:34:59.107 32340 32410 Debug Unity Found 3 interfaces on host OPPO_CPH2197@192.168.1.9:
2024/08/04 23:34:59.107 32340 32410 Debug Unity  0) 10.10.41.80
2024/08/04 23:34:59.107 32340 32410 Debug Unity  1) 10.184.211.76
2024/08/04 23:34:59.107 32340 32410 Debug Unity  2) 192.168.1.9
2024/08/04 23:34:59.107 32340 32410 Debug Unity 
2024/08/04 23:34:59.109 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:34:59.109 32340 32410 Debug Unity 
2024/08/04 23:34:59.109 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:34:59.109 32340 32410 Debug Unity 
2024/08/04 23:34:59.109 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:34:59.109 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:59.109 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:59.109 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:59.109 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:59.109 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:59.109 32340 32410 Info Unity 
2024/08/04 23:34:59.110 32340 32410 Info Unity {
2024/08/04 23:34:59.110 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:34:59.110 32340 32410 Info Unity   "$values": []
2024/08/04 23:34:59.110 32340 32410 Info Unity }
2024/08/04 23:34:59.110 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:34:59.110 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:34:59.110 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:34:59.110 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:34:59.110 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:34:59.110 32340 32410 Info Unity 
2024/08/04 23:34:59.111 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:03.073 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:03.487 32340 32340 Debug OplusInputMethodManagerInternal get inputMethodManager extension: com.android.internal.view.IInputMethodManager$Stub$Proxy@2bb35d6
2024/08/04 23:35:06.335 32340 32340 Error OplusCustomizeRestrictionManager sInstance is null, start a new sInstance
2024/08/04 23:35:06.345 32340 32340 Debug CompatibilityChangeReporter Compat change id reported: 210923482; UID 10613; state: ENABLED
2024/08/04 23:35:06.443 32340 32340 Debug WindowManager Add to mViews: DecorView@cbcb0c2[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:06.453 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@b29170e
2024/08/04 23:35:06.453 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:06.513 32340 32340 Debug BufferQueueConsumer [](id:7e5400000002,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:06.516 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.213692610
2024/08/04 23:35:06.548 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#2(BLAST Consumer)2](id:7e5400000002,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:06.558 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:06.558 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:06.562 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:06.563 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:06.582 32340 32340 Info Quality Skipped: false 3 cost 65.15476 refreshRate 16654652 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:06.601 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:06.601 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:06.604 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:06.611 32340 32340 Debug CompatibilityChangeReporter Compat change id reported: 163400105; UID 10613; state: ENABLED
2024/08/04 23:35:06.614 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:06.617 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:06.620 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:06.644 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{464ce58 VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741825} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:06.918 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:06.918 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:06.982 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:07.031 32340 32340 Debug InsetsController notifyFinished. No animation running, is it cancelled in controlAnimationUnchecked?
2024/08/04 23:35:07.659 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:07.659 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:07.707 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:07.707 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.036 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:08.036 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.168 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:08.168 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.350 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:08.350 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.754 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:08.754 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.845 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:08.925 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:08.926 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:08.930 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:08.931 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@b547d88
2024/08/04 23:35:08.931 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:08.931 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@691321
2024/08/04 23:35:08.936 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@d176346
2024/08/04 23:35:08.938 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:08.938 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#2(BLAST Consumer)2](id:7e5400000002,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:08.940 32340 32340 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#2(BLAST Consumer)2](id:7e5400000002,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:08.953 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:08.985 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:08.989 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:09.003 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:09.016 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:09.200 32340 32340 Debug WindowManager Add to mViews: DecorView@608c693[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:09.216 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@8ef38ef
2024/08/04 23:35:09.217 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:09.258 32340 32340 Debug BufferQueueConsumer [](id:7e5400000003,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:09.260 32340 32340 Error IPCThreadState attemptIncStrongHandle(87): Not supported
2024/08/04 23:35:09.266 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.101238419
2024/08/04 23:35:09.290 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#3(BLAST Consumer)3](id:7e5400000003,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:09.295 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:09.296 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:09.299 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:09.300 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:09.326 32340 32340 Info Quality Skipped: false 3 cost 61.48172 refreshRate 16656968 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:09.347 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:09.347 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:09.349 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:09.352 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:09.363 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:09.366 32340 32340 Warn Choreographer Already have a pending vsync event.  There should only be one at a time.
2024/08/04 23:35:09.367 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:09.372 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:09.382 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{5fa02c VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741828} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:09.453 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:09.453 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:09.529 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:10.215 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:10.215 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:10.248 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:10.248 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:10.398 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:10.398 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:10.440 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:10.440 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:10.556 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:10.652 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:10.652 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:10.658 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:10.658 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@e95c7d7
2024/08/04 23:35:10.658 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:10.659 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@ff3c8c4
2024/08/04 23:35:10.662 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@d9063ad
2024/08/04 23:35:10.663 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:10.663 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#3(BLAST Consumer)3](id:7e5400000003,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:10.669 32340 32374 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#3(BLAST Consumer)3](id:7e5400000003,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:10.679 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:10.703 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:10.706 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:10.715 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:10.723 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:13.534 32340 32340 Debug WindowManager Add to mViews: DecorView@6373319[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:13.549 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@2fee7d5
2024/08/04 23:35:13.550 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:13.585 32340 32340 Debug BufferQueueConsumer [](id:7e5400000004,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:13.586 32340 32340 Error IPCThreadState attemptIncStrongHandle(99): Not supported
2024/08/04 23:35:13.589 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.104280857
2024/08/04 23:35:13.605 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#4(BLAST Consumer)4](id:7e5400000004,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:13.608 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:13.609 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:13.610 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:13.611 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:13.627 32340 32340 Info Quality Skipped: false 1 cost 32.423508 refreshRate 16655274 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:13.634 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:13.636 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:13.654 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:13.654 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:13.656 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:13.665 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:13.700 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{10a7045 VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741831} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:13.749 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:13.749 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:13.804 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:15.166 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:15.167 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:15.201 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:15.201 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:15.347 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:15.347 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:15.502 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:15.502 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:15.689 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:15.689 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:16.861 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:16.861 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:17.005 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:17.005 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:17.134 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:17.134 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:17.255 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:17.255 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:17.753 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:17.753 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:17.782 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:17.782 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:18.202 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:18.202 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:18.595 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:18.596 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:18.777 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:18.777 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:19.106 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:19.106 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:19.434 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:19.486 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:19.486 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:19.491 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:19.491 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@7d86bf2
2024/08/04 23:35:19.491 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:19.492 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@735e243
2024/08/04 23:35:19.496 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@fb3f0c0
2024/08/04 23:35:19.498 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:19.498 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#4(BLAST Consumer)4](id:7e5400000004,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:19.501 32340 950 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#4(BLAST Consumer)4](id:7e5400000004,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:19.523 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:19.525 32340 32340 Info Quality Skipped: false 1 cost 17.167011 refreshRate 16659034 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:19.566 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:19.568 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:19.576 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:19.606 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:19.898 32340 32340 Debug WindowManager Add to mViews: DecorView@6fda087[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:19.912 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@509be23
2024/08/04 23:35:19.912 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:19.960 32340 32340 Debug BufferQueueConsumer [](id:7e5400000005,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:19.962 32340 32340 Error IPCThreadState attemptIncStrongHandle(91): Not supported
2024/08/04 23:35:19.964 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.117284999
2024/08/04 23:35:19.979 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#5(BLAST Consumer)5](id:7e5400000005,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:19.984 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:19.984 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:19.987 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:19.988 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:20.009 32340 32340 Warn Choreographer Already have a pending vsync event.  There should only be one at a time.
2024/08/04 23:35:20.009 32340 32340 Debug InsetsController notifyFinished. No animation running, is it cancelled in controlAnimationUnchecked?
2024/08/04 23:35:20.030 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:20.030 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:20.032 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:20.038 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:20.040 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:20.044 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:20.058 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{3f67613 VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741834} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:20.104 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:20.104 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:20.188 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:21.086 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:21.086 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:21.103 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:21.103 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:21.230 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:21.231 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:21.271 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:21.271 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:23.145 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:23.242 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:23.242 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:23.246 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:23.247 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@db4da5a
2024/08/04 23:35:23.247 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:23.247 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@c24948b
2024/08/04 23:35:23.252 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@f57c968
2024/08/04 23:35:23.254 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:23.254 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#5(BLAST Consumer)5](id:7e5400000005,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:23.262 32340 950 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#5(BLAST Consumer)5](id:7e5400000005,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:23.275 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:23.276 32340 32340 Info Quality Skipped: false 1 cost 22.039207 refreshRate 16640210 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:23.311 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:23.317 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:23.328 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:23.339 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:24.304 32340 32340 Info Unity onPause
2024/08/04 23:35:24.341 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:24.341 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:24.341 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:24.341 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:24.341 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:24.341 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:24.341 32340 32410 Info Unity 
2024/08/04 23:35:24.392 32340 32410 Info Unity {
2024/08/04 23:35:24.392 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:24.392 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:24.392 32340 32410 Info Unity     {
2024/08/04 23:35:24.392 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:24.392 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:24.392 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:24.392 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:24.392 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:24.392 32340 32410 Info Unity     }
2024/08/04 23:35:24.392 32340 32410 Info Unity   ]
2024/08/04 23:35:24.392 32340 32410 Info Unity }
2024/08/04 23:35:24.392 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:24.392 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:24.392 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:24.392 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:24.392 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:24.392 32340 32410 Info Unity 
2024/08/04 23:35:24.393 32340 32410 Debug Unity Vulkan PSO: Pipeline cache has not changed skipping save handle[b9a18190]
2024/08/04 23:35:24.393 32340 32410 Debug PuntiFragolaApp PlayerBase::stop() from IPlayer
2024/08/04 23:35:24.393 32340 32410 Debug AudioTrack stop(5072): prior state:STATE_ACTIVE output 13 stream 3 session 28177
2024/08/04 23:35:24.393 32340 32410 Debug AudioTrack stop(5072): called with 1210560 frames delivered
2024/08/04 23:35:24.393 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid
2024/08/04 23:35:24.394 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid  pid 32340  tid 32410
2024/08/04 23:35:24.394 32340 32410 Info AudioTrack stop(5072): 0xa9097800 stop done
2024/08/04 23:35:24.399 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:24.424 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:24.426 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:24.805 32340 950 Debug VRI[UnityPlayerActivity] dispatchAppVisibility visible:false
2024/08/04 23:35:24.822 32340 32340 Info SurfaceView 159056691 surfaceDestroyed
2024/08/04 23:35:24.823 32340 32340 Debug Unity PersistentUnitySurface.preserveContent: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824}
2024/08/04 23:35:24.824 32340 32340 Debug Unity PersistentUnitySurface.PlaceholderView.Copy: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824} Width 1080 Height 2400
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 QUALCOMM build                   : badfd2c428, Ic89c6ea852
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Build Date                       : 07/14/21
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 OpenGL ES Shader Compiler Version: EV031.35.01.09
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Local Branch                     : 
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Remote Branch                    : 
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Remote Branch                    : 
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Reconstruct Branch               : 
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Build Config                     : S P 10.0.7 AArch32
2024/08/04 23:35:24.840 32340 2362 Info AdrenoGLES-0 Driver Path                      : /vendor/lib/egl/libGLESv2_adreno.so
2024/08/04 23:35:24.846 32340 2362 Info AdrenoGLES-0 PFP: 0x016ee200, ME: 0x00000000
2024/08/04 23:35:25.079 32340 32410 Debug Unity SetWindow 0 0x0
2024/08/04 23:35:25.085 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:35:25.102 32340 32340 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:0,p:-1,c:32340) disconnect: api -1
2024/08/04 23:35:25.102 32340 32340 Debug BufferQueueConsumer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#1(BLAST Consumer)1](id:7e5400000001,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:25.113 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#0(BLAST Consumer)0](id:7e5400000000,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:25.114 32340 32340 Error BLASTBufferQueue [VRI[UnityPlayerActivity]#0](f:0,a:1) Applying pending transactions on dtor 1
2024/08/04 23:35:25.114 32340 32340 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#0(BLAST Consumer)0](id:7e5400000000,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:25.116 32340 32340 Debug Unity onPixelCopyFinished: 0
2024/08/04 23:35:25.529 32340 32340 Debug VRI[UnityPlayerActivity] setWindowStopped stopped:true
2024/08/04 23:35:28.526 32340 32340 Debug ActivityThread do gfx trim 40 success
2024/08/04 23:35:29.547 32340 950 Debug VRI[UnityPlayerActivity] dispatchAppVisibility visible:true
2024/08/04 23:35:29.563 32340 32340 Debug VRI[UnityPlayerActivity] setWindowStopped stopped:false
2024/08/04 23:35:29.819 32340 32340 Info Quality SlowBinder: com.DefaultCompany.PuntiFragolaApp to android.content.IContentProvider cost= 232 code= 1
2024/08/04 23:35:29.822 32340 32340 Debug Unity NativeCameraPictureFragment.onActivityResult: 3939646 /data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg
2024/08/04 23:35:29.847 32340 32340 Info Unity onResume
2024/08/04 23:35:29.848 32340 32340 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:29.853 32340 32340 Info Quality Skipped: false 0 cost 6.598125 refreshRate 16655039 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:29.866 32340 32340 Debug BufferQueueConsumer [](id:7e5400000006,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:29.867 32340 32340 Error IPCThreadState attemptIncStrongHandle(103): Not supported
2024/08/04 23:35:29.867 32340 32340 Error IPCThreadState attemptIncStrongHandle(62): Not supported
2024/08/04 23:35:29.867 32340 32340 Error IPCThreadState attemptIncStrongHandle(55): Not supported
2024/08/04 23:35:29.874 32340 32340 Debug BufferQueueConsumer [](id:7e5400000007,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:29.877 32340 32340 Info SurfaceView 159056691 visibleChanged -- surfaceCreated 
2024/08/04 23:35:29.877 32340 32410 Debug Unity SetWindow 0 0x9f00bc08
2024/08/04 23:35:29.878 32340 32340 Info SurfaceView 159056691 surfaceChanged -- format=4 w=1080 h=2400
2024/08/04 23:35:29.878 32340 32410 Debug Unity SetWindow 0 0x9f00bc08
2024/08/04 23:35:29.879 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:35:29.879 32340 32340 Error SurfaceSyncer Failed to find sync for id=1
2024/08/04 23:35:29.879 32340 32340 Error SurfaceSyncer Failed to find sync for id=2
2024/08/04 23:35:29.879 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#6(BLAST Consumer)6](id:7e5400000006,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:29.889 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:29.891 32340 32340 Info Quality Skipped: false 1 cost 24.697334 refreshRate 16653035 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:29.919 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:35:29.919 32340 32340 Error SurfaceSyncer Failed to find sync for id=1
2024/08/04 23:35:29.919 32340 32340 Error SurfaceSyncer Failed to find sync for id=2
2024/08/04 23:35:29.933 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:29.933 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:29.936 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:29.937 32340 32410 Debug Unity AndroidDisplayManagerVulkan::AttachWindow(0x9f00bc08, 0)
2024/08/04 23:35:29.939 32340 32410 Debug Unity InitializeOrResetSwapChain 1080x2400 hdr=0 samples=0
2024/08/04 23:35:29.942 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:35:29.943 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:35:29.943 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:35:29.943 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:35:29.943 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:35:29.943 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:35:29.943 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:35:29.943 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:35:29.944 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:35:29.944 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:35:29.944 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:35:29.944 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:35:29.944 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:35:29.944 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:35:29.944 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:35:29.944 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:35:29.944 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:35:29.961 32340 32410 Verbose SwappyVk SwappyVk initialized for VkDevice 0xb0c8d9f8 using VK_GOOGLE_display_timing on Android
2024/08/04 23:35:29.961 32340 32410 Info SwappyVk Returning refresh duration of 16666666 nsec (approx 60.000002 Hz)
2024/08/04 23:35:29.966 32340 32410 Debug AudioTrack start(5072): prior state:STATE_STOPPED output 13 stream 3 session 28177
2024/08/04 23:35:29.971 32340 32340 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:29.971 32340 32410 Debug AudioTrackExtImpl setAudioBoostTid
2024/08/04 23:35:29.971 32340 32340 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:29.971 32340 32410 Debug AudioTrackExtImpl oplusDumpValue PID is 32340  Tid is 32410
2024/08/04 23:35:29.985 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:29.985 32340 32410 Debug Unity Choreographer available: Enabling VSYNC timing
2024/08/04 23:35:29.986 32340 32410 Debug Unity Found 3 interfaces on host OPPO_CPH2197@192.168.1.9:
2024/08/04 23:35:29.987 32340 32410 Debug Unity  0) 10.10.41.80
2024/08/04 23:35:29.987 32340 32410 Debug Unity  1) 10.184.211.76
2024/08/04 23:35:29.987 32340 32410 Debug Unity  2) 192.168.1.9
2024/08/04 23:35:29.987 32340 32410 Debug Unity 
2024/08/04 23:35:29.988 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:29.988 32340 32410 Debug Unity 
2024/08/04 23:35:29.988 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:29.988 32340 32410 Debug Unity 
2024/08/04 23:35:29.988 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:29.988 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:29.988 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:29.988 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:29.988 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:29.988 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:29.988 32340 32410 Info Unity 
2024/08/04 23:35:29.989 32340 32410 Info Unity {
2024/08/04 23:35:29.989 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:29.989 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:29.989 32340 32410 Info Unity     {
2024/08/04 23:35:29.989 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:29.989 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:29.989 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:29.989 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:29.989 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:29.989 32340 32410 Info Unity     }
2024/08/04 23:35:29.989 32340 32410 Info Unity   ]
2024/08/04 23:35:29.989 32340 32410 Info Unity }
2024/08/04 23:35:29.989 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:29.989 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:29.989 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:29.989 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:29.989 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:29.989 32340 32410 Info Unity 
2024/08/04 23:35:29.991 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:29.993 32340 32410 Info Unity Image path: /data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg
2024/08/04 23:35:29.993 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:29.993 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:29.993 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:29.993 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:29.993 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:29.993 32340 32410 Info Unity 
2024/08/04 23:35:29.993 32340 32410 Info Unity file : /data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg
2024/08/04 23:35:29.993 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:29.993 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:29.993 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:29.993 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:29.993 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:29.993 32340 32410 Info Unity 
2024/08/04 23:35:30.040 32340 32410 Info BitmapFactoryExtImpl OSENSE_ACTION_DECODE is set
2024/08/04 23:35:30.205 32340 32410 Verbose ListServiceUtils checkInListByUid start module:custom-icc uid:10613  time 282688360234us
2024/08/04 23:35:30.205 32340 32410 Verbose ListServiceUtils checkInListByUid end module:custom-icc uid:10613  time 282688360504us
2024/08/04 23:35:30.205 32340 32410 Debug ListServiceUtils checkInListByUid module:custom-icc uid:10613 cost 269us return 0
2024/08/04 23:35:30.206 32340 32410 Verbose ListServiceUtils checkInListByUid module:image-processing uid:10613 cost 172us return (null)
2024/08/04 23:35:30.206 32340 32410 Verbose JpegEncoderExtImpl Resolution: 384 x 512,support: 0;
2024/08/04 23:35:33.155 32340 32340 Info Unity onPause
2024/08/04 23:35:33.166 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:33.166 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:33.166 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:33.166 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:33.166 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:33.166 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:33.166 32340 32410 Info Unity 
2024/08/04 23:35:33.167 32340 32410 Info Unity {
2024/08/04 23:35:33.167 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:33.167 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:33.167 32340 32410 Info Unity     {
2024/08/04 23:35:33.167 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:33.167 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:33.167 32340 32410 Info Unity     },
2024/08/04 23:35:33.167 32340 32410 Info Unity     {
2024/08/04 23:35:33.167 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "id": 1,
2024/08/04 23:35:33.167 32340 32410 Info Unity       "name": "Arold",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "points": "Count : 22",
2024/08/04 23:35:33.167 32340 32410 Info Unity       "image": "/data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg"
2024/08/04 23:35:33.167 32340 32410 Info Unity     }
2024/08/04 23:35:33.167 32340 32410 Info Unity   ]
2024/08/04 23:35:33.167 32340 32410 Info Unity }
2024/08/04 23:35:33.167 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:33.167 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:33.167 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:33.167 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:33.167 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:33.167 32340 32410 Info Unity 
2024/08/04 23:35:33.197 32340 32410 Debug Unity Vulkan PSO: Pipeline cache has not changed skipping save handle[b9a18190]
2024/08/04 23:35:33.197 32340 32410 Debug PuntiFragolaApp PlayerBase::stop() from IPlayer
2024/08/04 23:35:33.197 32340 32410 Debug AudioTrack stop(5072): prior state:STATE_ACTIVE output 13 stream 3 session 28177
2024/08/04 23:35:33.197 32340 32410 Debug AudioTrack stop(5072): called with 151104 frames delivered
2024/08/04 23:35:33.198 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid
2024/08/04 23:35:33.198 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid  pid 32340  tid 32410
2024/08/04 23:35:33.198 32340 32410 Info AudioTrack stop(5072): 0xa9097800 stop done
2024/08/04 23:35:33.203 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:33.248 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:33.250 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:36.868 32340 4319 Debug Unity Selected media uri: content://media/6cbd-9d1a/images/media/1000057596
2024/08/04 23:35:36.926 32340 32340 Debug ScrollOptimizationHelper can't find the config file for optimizaiton
2024/08/04 23:35:36.926 32340 32340 Debug ScrollOptimizationHelper will not debug for debug is false
2024/08/04 23:35:36.927 32340 32340 Debug CompatibilityChangeReporter Compat change id reported: 171228096; UID 10613; state: ENABLED
2024/08/04 23:35:36.928 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl get feature:IOplusDynamicVsyncFeature
2024/08/04 23:35:36.928 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl get feature:IOplusDynamicVsyncFeature
2024/08/04 23:35:36.928 32340 32340 Info oplus.android.OplusFrameworkFactoryImpl get feature:IOplusDynamicVsyncFeature
2024/08/04 23:35:36.973 32340 32340 Debug WindowManager Add to mViews: DecorView@847444b[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:36.986 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@1c3da27
2024/08/04 23:35:36.987 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:36.988 32340 32340 Info Unity onResume
2024/08/04 23:35:36.990 32340 32340 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:36.995 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:37.001 32340 32340 Info Quality Skipped: false 1 cost 23.2677 refreshRate 16655056 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:37.025 32340 32340 Debug BufferQueueConsumer [](id:7e5400000008,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:37.030 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.138888267
2024/08/04 23:35:37.040 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#8(BLAST Consumer)8](id:7e5400000008,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:37.046 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:37.060 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:37.062 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:37.075 32340 32340 Info Quality Skipped: false 2 cost 47.510258 refreshRate 16654278 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:37.091 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:37.119 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:37.129 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:37.173 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:37.174 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@52054ca
2024/08/04 23:35:37.174 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:37.174 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@6d5d63b
2024/08/04 23:35:37.180 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:37.180 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#8(BLAST Consumer)8](id:7e5400000008,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:37.197 32340 32340 Info Quality Skipped: false 1 cost 19.81105 refreshRate 16656904 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:37.200 32340 32374 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#8(BLAST Consumer)8](id:7e5400000008,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:37.219 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:37.225 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:37.231 32340 32410 Debug AudioTrack start(5072): prior state:STATE_STOPPED output 13 stream 3 session 28177
2024/08/04 23:35:37.233 32340 32340 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:37.233 32340 32340 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:37.240 32340 32410 Debug AudioTrackExtImpl setAudioBoostTid
2024/08/04 23:35:37.241 32340 32410 Debug AudioTrackExtImpl oplusDumpValue PID is 32340  Tid is 32410
2024/08/04 23:35:37.279 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:37.279 32340 32410 Debug Unity Choreographer available: Enabling VSYNC timing
2024/08/04 23:35:37.280 32340 32410 Debug Unity Found 3 interfaces on host OPPO_CPH2197@192.168.1.9:
2024/08/04 23:35:37.280 32340 32410 Debug Unity  0) 10.10.41.80
2024/08/04 23:35:37.280 32340 32410 Debug Unity  1) 10.184.211.76
2024/08/04 23:35:37.280 32340 32410 Debug Unity  2) 192.168.1.9
2024/08/04 23:35:37.280 32340 32410 Debug Unity 
2024/08/04 23:35:37.282 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:37.282 32340 32410 Debug Unity 
2024/08/04 23:35:37.282 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:37.282 32340 32410 Debug Unity 
2024/08/04 23:35:37.283 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:37.283 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:37.283 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:37.283 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:37.283 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:37.283 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:37.283 32340 32410 Info Unity 
2024/08/04 23:35:37.284 32340 32410 Info Unity {
2024/08/04 23:35:37.284 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:37.284 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:37.284 32340 32410 Info Unity     {
2024/08/04 23:35:37.284 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:37.284 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:37.284 32340 32410 Info Unity     },
2024/08/04 23:35:37.284 32340 32410 Info Unity     {
2024/08/04 23:35:37.284 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "id": 1,
2024/08/04 23:35:37.284 32340 32410 Info Unity       "name": "Arold",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "points": "Count : 22",
2024/08/04 23:35:37.284 32340 32410 Info Unity       "image": "/data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg"
2024/08/04 23:35:37.284 32340 32410 Info Unity     }
2024/08/04 23:35:37.284 32340 32410 Info Unity   ]
2024/08/04 23:35:37.284 32340 32410 Info Unity }
2024/08/04 23:35:37.284 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:37.284 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:37.284 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:37.284 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:37.284 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:37.284 32340 32410 Info Unity 
2024/08/04 23:35:37.286 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:37.288 32340 32410 Info Unity file : /storage/6CBD-9D1A/Pictures/Screenshots/Screenshot_2024-07-28-13-41-04-33_dd604340c1d7941d42aee14dd16e00e8.jpg
2024/08/04 23:35:37.288 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:37.288 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:37.288 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:37.288 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:37.288 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:37.288 32340 32410 Info Unity 
2024/08/04 23:35:37.322 32340 32410 Info BitmapFactoryExtImpl OSENSE_ACTION_DECODE is set
2024/08/04 23:35:37.408 32340 32410 Verbose ListServiceUtils checkInListByUid start module:custom-icc uid:10613  time 282695562879us
2024/08/04 23:35:37.408 32340 32410 Verbose ListServiceUtils checkInListByUid end module:custom-icc uid:10613  time 282695563209us
2024/08/04 23:35:37.408 32340 32410 Debug ListServiceUtils checkInListByUid module:custom-icc uid:10613 cost 329us return 0
2024/08/04 23:35:37.408 32340 32410 Verbose ListServiceUtils checkInListByUid module:image-processing uid:10613 cost 125us return (null)
2024/08/04 23:35:37.408 32340 32410 Verbose JpegEncoderExtImpl Resolution: 230 x 512,support: 0;
2024/08/04 23:35:37.933 32340 32340 Debug WindowManager Add to mViews: DecorView@a62002a[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:37.946 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@1f7f4f6
2024/08/04 23:35:37.947 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:37.987 32340 32340 Debug BufferQueueConsumer [](id:7e5400000009,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:37.987 32340 32340 Error IPCThreadState attemptIncStrongHandle(97): Not supported
2024/08/04 23:35:37.990 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.174194730
2024/08/04 23:35:38.004 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#9(BLAST Consumer)9](id:7e5400000009,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:38.007 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:38.007 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:38.009 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:38.010 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:38.026 32340 32340 Info Quality Skipped: false 1 cost 32.8993 refreshRate 16655601 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:38.036 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:38.039 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:38.054 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:38.054 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:38.055 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:38.067 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:38.078 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{8e587a6 VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741837} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:38.130 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:38.130 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:38.187 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:38.958 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:38.958 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:38.998 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:38.998 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:39.247 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:39.247 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:39.675 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:39.675 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:40.064 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:40.065 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:40.459 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:40.534 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:40.534 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:40.538 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:40.538 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@82be57e
2024/08/04 23:35:40.538 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:40.539 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@8114adf
2024/08/04 23:35:40.542 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@ba7032c
2024/08/04 23:35:40.544 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:40.544 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#9(BLAST Consumer)9](id:7e5400000009,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:40.551 32340 32367 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#9(BLAST Consumer)9](id:7e5400000009,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:40.561 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:40.564 32340 32340 Info Quality Skipped: false 1 cost 22.524237 refreshRate 16657997 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:40.581 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:40.598 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:40.606 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:40.625 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:40.836 32340 32340 Debug WindowManager Add to mViews: DecorView@6e91563[UnityPlayerActivity],pkg= com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:40.847 32340 32340 Debug ViewRootImplExtImpl onDisplayChanged -1 for VRI android.view.ViewRootImpl@7cda4bf
2024/08/04 23:35:40.848 32340 32340 Debug InputEventReceiver Input log is disabled
2024/08/04 23:35:40.891 32340 32340 Debug BufferQueueConsumer [](id:7e540000000a,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:40.892 32340 32340 Error IPCThreadState attemptIncStrongHandle(103): Not supported
2024/08/04 23:35:40.896 32340 32340 Verbose ZoomWindowDecorView setLastReportedMergedConfiguration mZoomDisplayHeight: 2400 getDecorView.115938659
2024/08/04 23:35:40.910 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#10(BLAST Consumer)10](id:7e540000000a,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:40.914 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:40.914 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:40.915 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:40.916 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:40.952 32340 32340 Info AssistStructure Flattened final assist data: 1020 bytes, containing 2 windows, 5 views
2024/08/04 23:35:40.954 32340 32340 Info Quality Skipped: false 2 cost 45.960423 refreshRate 16655762 bit false processName com.DefaultCompany.PuntiFragolaApp
2024/08/04 23:35:40.970 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:40.970 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:40.971 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:40.975 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:40.976 32340 32340 Warn Choreographer Already have a pending vsync event.  There should only be one at a time.
2024/08/04 23:35:40.981 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:40.981 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:40.994 32340 32340 Debug InputMethodManager showSoftInput() view=com.unity3d.player.y{3b5ebbc VFED..CL. .F....I. 16,24-872,152 #2 aid=1073741840} flags=0 reason=SHOW_SOFT_INPUT
2024/08/04 23:35:41.055 32340 32340 Warn OnBackInvokedCallback OnBackInvokedCallback is not enabled for the application.
2024/08/04 23:35:41.055 32340 32340 Warn OnBackInvokedCallback Set 'android:enableOnBackInvokedCallback="true"' in the application manifest.
2024/08/04 23:35:41.136 32340 32340 Debug InsetsController show(ime(), fromIme=true)
2024/08/04 23:35:41.726 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:41.737 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:41.749 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:41.749 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:42.020 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:42.031 32340 32340 Debug EditableInputConnectionExtImpl handleSendKeyEvent
2024/08/04 23:35:42.052 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:42.052 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:42.245 32340 32340 Debug OplusSystemUINavigationGestureExtImpl regionString = null
2024/08/04 23:35:42.333 32340 32340 Debug CursorFeedback getExtraCursorWidth
2024/08/04 23:35:42.333 32340 32340 Debug CursorFeedback getExtraLeftOffset
2024/08/04 23:35:42.336 32340 32340 Debug OplusScrollToTopManager unregisterGuidePopupDismissReceiverInSystemUI
2024/08/04 23:35:42.337 32340 32340 Debug OplusScrollToTopManager Receiver not registered: android.view.OplusScrollToTopManager$1@e94f1a7
2024/08/04 23:35:42.337 32340 32340 Debug OplusScrollToTopManager unregisterSystemUIBroadcastReceiver 
2024/08/04 23:35:42.337 32340 32340 Debug OplusScrollToTopManager java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@535f654
2024/08/04 23:35:42.340 32340 32340 Debug CursorFeedback editorDetachFromWindow android.widget.Editor@1ffa9fd
2024/08/04 23:35:42.341 32340 32340 Verbose ZoomWindowDecorView removeZoomView
2024/08/04 23:35:42.341 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#10(BLAST Consumer)10](id:7e540000000a,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:42.346 32340 950 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#10(BLAST Consumer)10](id:7e540000000a,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:42.353 32340 32340 Warn RemoteInputConnectionImpl getSurroundingText on inactive InputConnection
2024/08/04 23:35:42.378 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:42.381 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:42.401 32340 32340 Warn RemoteInputConnectionImpl requestCursorAnchorInfo on inactive InputConnection
2024/08/04 23:35:42.416 32340 32340 Error ImeBackDispatcher Ime callback not found. Ignoring unregisterReceivedCallback. callbackId: 176397598
2024/08/04 23:35:44.619 32340 32340 Info Unity onPause
2024/08/04 23:35:44.641 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:44.641 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:44.641 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:44.641 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:44.641 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:44.641 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:44.641 32340 32410 Info Unity 
2024/08/04 23:35:44.642 32340 32410 Info Unity {
2024/08/04 23:35:44.642 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:44.642 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:44.642 32340 32410 Info Unity     {
2024/08/04 23:35:44.642 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:44.642 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:44.642 32340 32410 Info Unity     },
2024/08/04 23:35:44.642 32340 32410 Info Unity     {
2024/08/04 23:35:44.642 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "id": 1,
2024/08/04 23:35:44.642 32340 32410 Info Unity       "name": "Arold",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "points": "Count : 22",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "image": "/data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg"
2024/08/04 23:35:44.642 32340 32410 Info Unity     },
2024/08/04 23:35:44.642 32340 32410 Info Unity     {
2024/08/04 23:35:44.642 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "id": 2,
2024/08/04 23:35:44.642 32340 32410 Info Unity       "name": "Mmai",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "points": "Count : 65",
2024/08/04 23:35:44.642 32340 32410 Info Unity       "image": "/storage/6CBD-9D1A/Pictures/Screenshots/Screenshot_2024-07-28-13-41-04-33_dd604340c1d7941d42aee14dd16e00e8.jpg"
2024/08/04 23:35:44.642 32340 32410 Info Unity     }
2024/08/04 23:35:44.642 32340 32410 Info Unity   ]
2024/08/04 23:35:44.642 32340 32410 Info Unity }
2024/08/04 23:35:44.642 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:44.642 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:44.642 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:44.642 32340 32410 Info Unity  #3 0xb
2024/08/04 23:35:44.673 32340 32410 Debug Unity Vulkan PSO: Pipeline cache has not changed skipping save handle[b9a18190]
2024/08/04 23:35:44.673 32340 32410 Debug PuntiFragolaApp PlayerBase::stop() from IPlayer
2024/08/04 23:35:44.673 32340 32410 Debug AudioTrack stop(5072): prior state:STATE_ACTIVE output 13 stream 3 session 28177
2024/08/04 23:35:44.673 32340 32410 Debug AudioTrack stop(5072): called with 353088 frames delivered
2024/08/04 23:35:44.674 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid
2024/08/04 23:35:44.674 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid  pid 32340  tid 32410
2024/08/04 23:35:44.674 32340 32410 Info AudioTrack stop(5072): 0xa9097800 stop done
2024/08/04 23:35:44.688 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:44.689 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:35:44.691 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:35:45.193 32340 32374 Debug VRI[UnityPlayerActivity] dispatchAppVisibility visible:false
2024/08/04 23:35:45.209 32340 32340 Info SurfaceView 159056691 surfaceDestroyed
2024/08/04 23:35:45.210 32340 32340 Debug Unity PersistentUnitySurface.preserveContent: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824}
2024/08/04 23:35:45.213 32340 32340 Debug Unity PersistentUnitySurface.PlaceholderView.Copy: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824} Width 1080 Height 2400
2024/08/04 23:35:45.246 32340 32410 Debug Unity SetWindow 0 0x0
2024/08/04 23:35:45.259 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:35:45.283 32340 32340 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:0,p:-1,c:32340) disconnect: api -1
2024/08/04 23:35:45.283 32340 32340 Debug BufferQueueConsumer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#7(BLAST Consumer)7](id:7e5400000007,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:45.305 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#6(BLAST Consumer)6](id:7e5400000006,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:35:45.307 32340 32340 Error BLASTBufferQueue [VRI[UnityPlayerActivity]#6](f:0,a:1) Applying pending transactions on dtor 1
2024/08/04 23:35:45.308 32340 32340 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#6(BLAST Consumer)6](id:7e5400000006,api:0,p:-1,c:32340) disconnect
2024/08/04 23:35:45.314 32340 32340 Debug VRI[UnityPlayerActivity] setWindowStopped stopped:true
2024/08/04 23:35:45.316 32340 32340 Debug Unity onPixelCopyFinished: 0
2024/08/04 23:35:46.162 32340 32374 Debug VRI[UnityPlayerActivity] dispatchAppVisibility visible:true
2024/08/04 23:35:46.171 32340 32340 Debug VRI[UnityPlayerActivity] setWindowStopped stopped:false
2024/08/04 23:35:46.175 32340 32340 Info Unity onResume
2024/08/04 23:35:46.178 32340 32340 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:35:46.228 32340 32340 Debug BufferQueueConsumer [](id:7e540000000b,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:46.228 32340 32340 Error IPCThreadState attemptIncStrongHandle(106): Not supported
2024/08/04 23:35:46.229 32340 32340 Error IPCThreadState attemptIncStrongHandle(68): Not supported
2024/08/04 23:35:46.229 32340 32340 Error IPCThreadState attemptIncStrongHandle(61): Not supported
2024/08/04 23:35:46.236 32340 32340 Debug BufferQueueConsumer [](id:7e540000000c,api:0,p:-1,c:32340) connect: controlledByApp=false
2024/08/04 23:35:46.237 32340 32340 Info SurfaceView 159056691 visibleChanged -- surfaceCreated 
2024/08/04 23:35:46.237 32340 32410 Debug Unity SetWindow 0 0xe1c17808
2024/08/04 23:35:46.240 32340 32340 Info SurfaceView 159056691 surfaceChanged -- format=4 w=1080 h=2400
2024/08/04 23:35:46.240 32340 32410 Debug Unity SetWindow 0 0xe1c17808
2024/08/04 23:35:46.241 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:35:46.241 32340 32340 Error SurfaceSyncer Failed to find sync for id=1
2024/08/04 23:35:46.241 32340 32340 Error SurfaceSyncer Failed to find sync for id=2
2024/08/04 23:35:46.241 32340 32340 Error SurfaceSyncer Failed to find sync for id=3
2024/08/04 23:35:46.241 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#11(BLAST Consumer)11](id:7e540000000b,api:2,p:32340,c:32340) connect: api=2 producerControlledByApp=true
2024/08/04 23:35:46.251 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:46.261 32340 32340 Error SurfaceSyncer Failed to find sync for id=0
2024/08/04 23:35:46.261 32340 32340 Error SurfaceSyncer Failed to find sync for id=1
2024/08/04 23:35:46.261 32340 32340 Error SurfaceSyncer Failed to find sync for id=2
2024/08/04 23:35:46.261 32340 32340 Error SurfaceSyncer Failed to find sync for id=3
2024/08/04 23:35:46.277 32340 32340 Debug VRI[UnityPlayerActivity] draw finished.
2024/08/04 23:35:46.277 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent true
2024/08/04 23:35:46.281 32340 32340 Info Unity windowFocusChanged: true
2024/08/04 23:35:46.281 32340 32410 Debug Unity AndroidDisplayManagerVulkan::AttachWindow(0xe1c17808, 0)
2024/08/04 23:35:46.283 32340 32410 Debug Unity InitializeOrResetSwapChain 1080x2400 hdr=0 samples=0
2024/08/04 23:35:46.284 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:35:46.285 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:35:46.285 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:35:46.285 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:35:46.285 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:35:46.285 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:35:46.285 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:35:46.285 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:35:46.285 32340 32410 Error qdgralloc GetGpuPixelFormat: No map for format: 0x38
2024/08/04 23:35:46.286 32340 32410 Error AdrenoUtils <validate_memory_layout_input_parmas:2097>: Unknown Format 0
2024/08/04 23:35:46.286 32340 32410 Error AdrenoUtils <adreno_init_memory_layout:4847>: Memory Layout input parameter validation failed!
2024/08/04 23:35:46.286 32340 32410 Error qdgralloc GetGpuResourceSizeAndDimensions Graphics metadata init failed
2024/08/04 23:35:46.286 32340 32410 Error Gralloc4 isSupported(1, 1, 56, 1, ...) failed with 1
2024/08/04 23:35:46.286 32340 32410 Error GraphicBufferAllocator Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 1
2024/08/04 23:35:46.286 32340 32410 Error AHardwareBuffer GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -1), handle=0x0
2024/08/04 23:35:46.286 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:35:46.286 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:1,p:32340,c:32340) connect: api=1 producerControlledByApp=true
2024/08/04 23:35:46.318 32340 32410 Verbose SwappyVk SwappyVk initialized for VkDevice 0xb0c8d9f8 using VK_GOOGLE_display_timing on Android
2024/08/04 23:35:46.318 32340 32410 Info SwappyVk Returning refresh duration of 16666666 nsec (approx 60.000002 Hz)
2024/08/04 23:35:46.326 32340 32410 Debug AudioTrack start(5072): prior state:STATE_STOPPED output 13 stream 3 session 28177
2024/08/04 23:35:46.327 32340 32340 Debug MediaRouter onRestoreRoute() : route=RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:46.328 32340 32340 Verbose MediaRouter Selecting route: RouteInfo{ name=Telefono, description=null, status=null, category=RouteCategory{ name=Sistema types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO  groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null }
2024/08/04 23:35:46.332 32340 32410 Debug AudioTrackExtImpl setAudioBoostTid
2024/08/04 23:35:46.333 32340 32410 Debug AudioTrackExtImpl oplusDumpValue PID is 32340  Tid is 32410
2024/08/04 23:35:46.348 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:35:46.348 32340 32410 Debug Unity Choreographer available: Enabling VSYNC timing
2024/08/04 23:35:46.348 32340 32410 Debug Unity Found 3 interfaces on host OPPO_CPH2197@192.168.1.9:
2024/08/04 23:35:46.348 32340 32410 Debug Unity  0) 10.10.41.80
2024/08/04 23:35:46.348 32340 32410 Debug Unity  1) 10.184.211.76
2024/08/04 23:35:46.348 32340 32410 Debug Unity  2) 192.168.1.9
2024/08/04 23:35:46.348 32340 32410 Debug Unity 
2024/08/04 23:35:46.350 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:46.350 32340 32410 Debug Unity 
2024/08/04 23:35:46.350 32340 32410 Debug Unity Player connection [3786129856] Multi-casting "[IP] 10.10.41.80 [Port] 55000 [Flags] 2 [Guid] 941284675 [EditorId] 3243244018 [Version] 1048832 [Id] AndroidPlayer(11,OPPO_CPH2197@192.168.1.9) [Debug] 0 [PackageName] AndroidPlayer [ProjectName] PuntiFragolaApp" to [225.0.0.222:54997]...
2024/08/04 23:35:46.350 32340 32410 Debug Unity 
2024/08/04 23:35:46.350 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:35:46.350 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:46.350 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:46.350 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:46.350 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:35:46.350 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:35:46.350 32340 32410 Info Unity 
2024/08/04 23:35:46.351 32340 32410 Info Unity {
2024/08/04 23:35:46.351 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:35:46.351 32340 32410 Info Unity   "$values": [
2024/08/04 23:35:46.351 32340 32410 Info Unity     {
2024/08/04 23:35:46.351 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "id": 0,
2024/08/04 23:35:46.351 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "image": ""
2024/08/04 23:35:46.351 32340 32410 Info Unity     },
2024/08/04 23:35:46.351 32340 32410 Info Unity     {
2024/08/04 23:35:46.351 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "id": 1,
2024/08/04 23:35:46.351 32340 32410 Info Unity       "name": "Arold",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "points": "Count : 22",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "image": "/data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg"
2024/08/04 23:35:46.351 32340 32410 Info Unity     },
2024/08/04 23:35:46.351 32340 32410 Info Unity     {
2024/08/04 23:35:46.351 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "id": 2,
2024/08/04 23:35:46.351 32340 32410 Info Unity       "name": "Mmai",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "points": "Count : 65",
2024/08/04 23:35:46.351 32340 32410 Info Unity       "image": "/storage/6CBD-9D1A/Pictures/Screenshots/Screenshot_2024-07-28-13-41-04-33_dd604340c1d7941d42aee14dd16e00e8.jpg"
2024/08/04 23:35:46.351 32340 32410 Info Unity     }
2024/08/04 23:35:46.351 32340 32410 Info Unity   ]
2024/08/04 23:35:46.351 32340 32410 Info Unity }
2024/08/04 23:35:46.351 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:35:46.351 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:35:46.351 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:35:46.351 32340 32410 Info Unity  #3 0xb
2024/08/04 23:35:46.353 32340 32410 Debug AudioManagerExtImpl getStreamVolume packageName=com.DefaultCompany.PuntiFragolaApp, index=4, streamType=3
2024/08/04 23:36:13.869 32340 32340 Info Unity onPause
2024/08/04 23:36:13.873 32340 32410 Info Unity OnApplicationPause
2024/08/04 23:36:13.873 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:36:13.873 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:36:13.873 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:36:13.873 32340 32410 Info Unity  #3 0xbc50af4b (libunity.so) DebugLogHandler_CUSTOM_Internal_Log(LogType, LogOption, ScriptingBackendNativeStringPtrOpaque*, ScriptingBackendNativeObjectPtrOpaque*) 0xbe
2024/08/04 23:36:13.873 32340 32410 Info Unity  #4 0xe8bb5c72 (Unknown) ? 0x0
2024/08/04 23:36:13.873 32340 32410 Info Unity 
2024/08/04 23:36:13.874 32340 32410 Info Unity {
2024/08/04 23:36:13.874 32340 32410 Info Unity   "$type": "System.Collections.Generic.List`1[[NameClass, Assembly-CSharp]], mscorlib",
2024/08/04 23:36:13.874 32340 32410 Info Unity   "$values": [
2024/08/04 23:36:13.874 32340 32410 Info Unity     {
2024/08/04 23:36:13.874 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "id": 0,
2024/08/04 23:36:13.874 32340 32410 Info Unity       "name": "Diego",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "points": "Count : 23",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "image": ""
2024/08/04 23:36:13.874 32340 32410 Info Unity     },
2024/08/04 23:36:13.874 32340 32410 Info Unity     {
2024/08/04 23:36:13.874 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "id": 1,
2024/08/04 23:36:13.874 32340 32410 Info Unity       "name": "Arold",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "points": "Count : 22",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "image": "/data/user/0/com.DefaultCompany.PuntiFragolaApp/cache/IMG_camera.jpg"
2024/08/04 23:36:13.874 32340 32410 Info Unity     },
2024/08/04 23:36:13.874 32340 32410 Info Unity     {
2024/08/04 23:36:13.874 32340 32410 Info Unity       "$type": "NameClass, Assembly-CSharp",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "id": 2,
2024/08/04 23:36:13.874 32340 32410 Info Unity       "name": "Mmai",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "points": "Count : 65",
2024/08/04 23:36:13.874 32340 32410 Info Unity       "image": "/storage/6CBD-9D1A/Pictures/Screenshots/Screenshot_2024-07-28-13-41-04-33_dd604340c1d7941d42aee14dd16e00e8.jpg"
2024/08/04 23:36:13.874 32340 32410 Info Unity     }
2024/08/04 23:36:13.874 32340 32410 Info Unity   ]
2024/08/04 23:36:13.874 32340 32410 Info Unity }
2024/08/04 23:36:13.874 32340 32410 Info Unity  #0 0xbce6d2f3 (libunity.so) GetStacktrace(int) 0x26
2024/08/04 23:36:13.874 32340 32410 Info Unity  #1 0xbd6a0bd9 (libunity.so) DebugStringToFile(DebugStringToFileData const&) 0x120
2024/08/04 23:36:13.874 32340 32410 Info Unity  #2 0xbc50aff3 (libunity.so) DebugLogHandler::Internal_Log(LogType, LogOption, core::basic_string<char, core::StringStorageDefault<char> > const&, Object*) 0x6a
2024/08/04 23:36:13.874 32340 32410 Info Unity  #3 0xb
2024/08/04 23:36:13.902 32340 32410 Debug Unity Vulkan PSO: Pipeline cache has not changed skipping save handle[b9a18190]
2024/08/04 23:36:13.902 32340 32410 Debug PuntiFragolaApp PlayerBase::stop() from IPlayer
2024/08/04 23:36:13.902 32340 32410 Debug AudioTrack stop(5072): prior state:STATE_ACTIVE output 13 stream 3 session 28177
2024/08/04 23:36:13.902 32340 32410 Debug AudioTrack stop(5072): called with 1324416 frames delivered
2024/08/04 23:36:13.906 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid
2024/08/04 23:36:13.912 32340 32410 Debug AudioTrackExtImpl clearAudioBoostTid  pid 32340  tid 32410
2024/08/04 23:36:13.912 32340 32410 Info AudioTrack stop(5072): 0xa9097800 stop done
2024/08/04 23:36:13.920 32340 32410 Debug Unity Sensor :        Accelerometer ( 1) ; 0.002393 / 0.00s ; bmi160 Accelerometer Non-wakeup / BOSCH 
2024/08/04 23:36:13.921 32340 32340 Debug VRI[UnityPlayerActivity] onFocusEvent false
2024/08/04 23:36:13.925 32340 32340 Info Unity windowFocusChanged: false
2024/08/04 23:36:14.373 32340 950 Debug VRI[UnityPlayerActivity] dispatchAppVisibility visible:false
2024/08/04 23:36:14.386 32340 32340 Info SurfaceView 159056691 surfaceDestroyed
2024/08/04 23:36:14.387 32340 32340 Debug Unity PersistentUnitySurface.preserveContent: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824}
2024/08/04 23:36:14.390 32340 32340 Debug Unity PersistentUnitySurface.PlaceholderView.Copy: com.unity3d.player.a{97b0333 VFE...... .F....I. 0,0-1080,2400 #7f020000 app:id/unitySurfaceView aid=1073741824} Width 1080 Height 2400
2024/08/04 23:36:14.415 32340 32410 Debug Unity SetWindow 0 0x0
2024/08/04 23:36:14.422 32340 32410 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:1,p:32340,c:32340) disconnect: api 1
2024/08/04 23:36:14.435 32340 32340 Debug BufferQueueProducer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:0,p:-1,c:32340) disconnect: api -1
2024/08/04 23:36:14.435 32340 32340 Debug BufferQueueConsumer [SurfaceView[com.DefaultCompany.PuntiFragolaApp/com.unity3d.player.UnityPlayerActivity]#12(BLAST Consumer)12](id:7e540000000c,api:0,p:-1,c:32340) disconnect
2024/08/04 23:36:14.462 32340 32340 Debug BufferQueueProducer [VRI[UnityPlayerActivity]#11(BLAST Consumer)11](id:7e540000000b,api:2,p:32340,c:32340) disconnect: api 2
2024/08/04 23:36:14.463 32340 32340 Debug BufferQueueConsumer [VRI[UnityPlayerActivity]#11(BLAST Consumer)11](id:7e540000000b,api:0,p:-1,c:32340) disconnect
2024/08/04 23:36:14.470 32340 32340 Debug VRI[UnityPlayerActivity] setWindowStopped stopped:true
2024/08/04 23:36:14.474 32340 32340 Debug Unity onPixelCopyFinished: 0
2024/08/04 23:36:15.240 32340 32340 Info Unity onDestroy

it didnt say much i also log the json file and like i said the path il right but when i return on the app the "Mmai" save is disappear becouse i cannot find the image

@DiegoAlejandroSalazar
Copy link
Author

now i save the image path e when the part of the code that get the path and loaded it, the log say this :
2024/08/05 00:06:33.830 27271 27355 Info Unity Object reference not set to an instance of an object
i also log the texture that the NativeCamera.LoadImageAtPath returns and it return null for the phone gallery path.

@yasirkula
Copy link
Owner

Hmm, the logs state that a valid image path is returned which is good. NativeGallery isn't supposed to return inaccessible image paths. Since you mentioned a NullReferenceException and the fact that I had seen cases which could not be reproduced in a new project, I want to ask you to test the example code in a new project with only NativeGallery installed and no modifications to the example code.

@DiegoAlejandroSalazar
Copy link
Author

i tried copy your example code on another project and still it load the image from the phone gallery but when i save te path on a text file and re-use the method it say that the path does not exist.

@yasirkula
Copy link
Owner

Alright it's good news that the image can be loaded immediately after it's picked. Are you saving and loading in the same session or restarting the app beforehand? In the latter case, if you call your save load functions in the same session, does it work?

@DiegoAlejandroSalazar
Copy link
Author

i call the save function every time the app go on pause and if i reuse the path in the same session does not work

@yasirkula
Copy link
Owner

It goes against everything I know. Can you create a repro project for me to reproduce the issue?

@DiegoAlejandroSalazar
Copy link
Author

@yasirkula
Copy link
Owner

It might be private, I can't access it :]

@yasirkula
Copy link
Owner

You could zip the Assets folder of your small repro project, that'd be fine for me.

@DiegoAlejandroSalazar
Copy link
Author

Assets.zip

yasirkula added a commit that referenced this issue Aug 10, 2024
…ages after the app is restarted but it isn't recommended (see the relevant FAQ entry)(#328)
@yasirkula
Copy link
Owner

I was able to reproduce the issue. It seems that without theREAD_EXTERNAL_STORAGE permission, we can't access the same file on another session. The bad news is, this permission is removed on Android 33 and later. When targeting API Level 32, the permission is still asked and the app works correctly but Google Play requires targeting 34 IIRC so that's not an option.

I've added a way to fix this issue but it isn't the recommended way to resolve it. Please see the newly added FAQ entry for "I save the picked image's path for later use but I can no longer access it after restarting the app" to learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants