PlayEveryWare / eos_plugin_for_unity

Repository for PlayEveryWare's EOS Plugin for Unity, bringing the functionality of Epic Online Services to the Unity Game Engine.
https://eospluginforunity.playeveryware.com
284 stars 55 forks source link

[Android] After Logining to EPIC , Android reboot automatically and need to login again. #304

Closed tamuatamu closed 1 year ago

tamuatamu commented 1 year ago

Describe the bug After Logining to EPIC using Account portal , Android reboot automatically and need to login again.

Expected behavior Is this expected behaviour? If so, How to avoid login again?

Desktop (please complete the following information):

Smartphone (please complete the following information):

RedMazer commented 1 year ago

We are expecting a fix for this in a future update. For now an alternate login method may be easier. I've found success using the persistent login method after the reboot as the login credentials are now saved.

tamuatamu commented 1 year ago

Yes. I also use that method. `if (Application.internetReachability == NetworkReachability.NotReachable) { Debug.LogError("Internet not reachable."); return; }

        string usernameAsString = "";
        string passwordAsString = "";

        onSucessfulLogin_Process = onLoginSucess;
        onFailedLogin_Process = onLoginFail;
        EOSManager.Instance.StartPersistentLogin((Epic.OnlineServices.Auth.LoginCallbackInfo callbackInfo) =>
        {
            // In this state, it means one needs to login in again with the previous login type, or a new one, as the
            // tokens are invalid
            if (callbackInfo.ResultCode != Epic.OnlineServices.Result.Success)
            {
                Debug.Log("[EOS]EnterLogin");
                EOSManager.Instance.StartLoginWithLoginTypeAndToken(loginType,
                                                               usernameAsString,
                                                               passwordAsString,
                                                               StartLoginWithLoginTypeAndTokenCallback);
                //ConnectDeviceId();
            }
            else
            {
                StartLoginWithLoginTypeAndTokenCallback(callbackInfo);
            }
        });
        Debug.Log("Attempting to login...");`

       like this. If cannot have tocken , need to login via Accout portal.
       But after login, the tocken didn't save.
       Do you have any suggession.
       Thank you for in advance
tamuatamu commented 1 year ago

And I tried to use method mensioned here https://github.com/PlayEveryWare/eos_plugin_for_unity/issues/205 I deleted old eos-sdk.aar and eos-sdk.meta file from folder and replaced eos-sdk that is revised following that method. But when i build app , the previous eos-sdk is generated automatically and revised one is deleted. So How to keep new eos-sdk? Please teach me. Thank you

tamuatamu commented 1 year ago

And When come back from login, android show this error Graphics is null.

arthur740212 commented 1 year ago

The approach is correct but not on the .aar in the plugin folder. The target .aar to modify would be in PlatformSpecificAssets\EOS\Android\[static or dynamic]-stdc++\aar depending on your preferred linking type. Embed the client id into the .aar. Note that the final aar would have the folder structure like eos-sdk.aar/[content] instead of eos-sdk.aar/eos-sdk/[content] , as some compressing tools will add an extra layer in the resulting zip file.

tamuatamu commented 1 year ago

Thank you for replying. I tried this you mention. But for me not working.

After come back from Accout Portal, my apps seems once it crash and then reboot. ErrorCoentent

E SurfaceSyncer: Failed to find sync for id=0 and W linker64: type=1400 audit(0.0:1829): avc: denied { search } for name="tests" dev="dm-61" ino=113 scontext=u:r:untrusted_app_30:s0:c32,c257,c512,c768 tcontext=u:object_r:shell_test_data_file:s0 tclass=dir permissive=0 app=""

'W NetworkScheduler: Error inserting flex_time=2005000 job_id=-1 period=4011000 source=16 requires_charging=0 preferred_network_type=1 target_class=com.google.android.gms.measurement.PackageMeasurementTaskService user_id=0 target_package=com.google.android.gms tag=Measurement.PackageMeasurementTaskService.UPLOAD_TASK_TAG task_type=0 required_idleness_state=0 service_kind=0 source_version=231819000 persistence_level=1 preferred_charging_state=1 required_network_type=0 runtime=1686227729004 retry_strategy={"maximum_backoff_seconds":{"3600":0},"initial_backoff_seconds":{"30":0},"retry_policy":{"0":0}} last_runtime=0 [CONTEXT service_id=218 ]'

'W chromium: [0608/213529.073870:ERROR:elf_dynamic_array_reader.h(64)] tag not found'

this three error show and app is crashed. Do you have any idea about this problem?

andrew-hirata-playeveryware commented 1 year ago

I might be mistaken, but it looks like a chromium crash: i.e. the browser is crashing when trying to do login. Do you notice that the browser is also running after the crash? My other theory, is that this could be caused by mixing different C++ runtimes, but it is hard to tell without full logs. Are you able to provide a full log, from App start to crash?

tamuatamu commented 1 year ago

Sometimes browser is running after the crash.But not all time.

Sure this is whole log  ent.PackageMeasurementTaskService user_id=0 target_package=com.google.android.gms tag=Measurement.PackageMeasurementTaskService.UPLOAD_TASK_TAG task_type=0 required_idleness_state=0 service_kind=0 source_version=231819000 persistence_level=1 preferred_charging_state=1 required_network_type=0 runtime=1686272524694 retry_strategy={"maximum_backoff_seconds":{"3600":0},"initial_backoff_seconds":{"30":0},"retry_policy":{"0":0}} last_runtime=0 [CONTEXT service_id=218 ] 06-09 10:02:04.698 5521 29282 W NetworkScheduler: android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: pending_ops.tag, pending_ops.target_class, pending_ops.target_package, pending_ops.user_id (code 2067 SQLITE_CONSTRAINT_UNIQUE) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:961) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:790) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:89) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1868) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertOrThrow(SQLiteDatabase.java:1763) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at byui.f(:com.google.android.gms@231819044@23.18.19 (190400-536743017):59) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at bytb.n(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at bytb.u(:com.google.android.gms@231819044@23.18.19 (190400-536743017):20) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at bytb.h(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at byot.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):9) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at aced.c(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at aced.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):7) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at acjn.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 10:02:04.698 5521 29282 W NetworkScheduler: at java.lang.Thread.run(Thread.java:1012) 06-09 10:02:04.755 1757 4996 D ConnectivityService: requestNetwork for uid/pid:10288/29913 activeRequest: null callbackRequest: 1904 [NetworkRequest [ REQUEST id=1905, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10288 RequestorUid: 10288 RequestorPkg: com.UniConnection.ARShouting UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 06-09 10:02:04.763 1757 2289 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=1905, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10288 RequestorUid: 10288 RequestorPkg: com.UniConnection.ARShouting UnderlyingNetworks: Null] ] 06-09 10:02:04.763 1757 2289 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1905, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10288 RequestorUid: 10288 RequestorPkg: com.UniConnection.ARShouting UnderlyingNetworks: Null] ] 06-09 10:02:04.763 29913 29949 I Unity : [EOS] StartLoginWithLoginOptions 06-09 10:02:04.763 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginOptions(LoginOptions, OnAuthLoginCallback) 06-09 10:02:04.763 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginTypeAndToken(LoginCredentialType, ExternalCredentialType, String, String, OnAuthLoginCallback) 06-09 10:02:04.763 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.Samples.EOS_LoginManager:LoginProcess(UnityAction, UnityAction) 06-09 10:02:04.763 29913 29949 I Unity : TopMenuTransit:OnEnter(StartScreenTransit, StartTransitBase) 06-09 10:02:04.763 29913 29949 I Unity : StartScreenTransit:ChangeState(StartTransitBase) 06-09 10:02:04.763 29913 29949 I Unity : <OnEnter>d__0:MoveNext() 06-09 10:02:04.763 29913 29949 I Unity : System.Threading.ExecutionContext:RunInternal(ExecutionContext, ContextCallback, Object, Boolean) 06-09 10:02:04.763 29913 29949 I Unity : System.Runtime.CompilerServices.MoveNextRunner:Run() 06-09 10:02:04.763 29913 29949 I Unity : Cysharp.Threading.Tasks.UniTaskCompletionSourceCore1:TrySetResult(TResult) 06-09 10:02:04.763 29913 29949 I Unity : Cysharp.Threading.Tasks.DelayPromise:MoveNext() 06-09 10:02:04.763 29913 29949 I Unity : Cysharp.Threading.Tasks.Internal.PlayerLoopRunner:RunCore() 06-09 10:02:04.763 29913 29949 I Unity : 06-09 10:02:04.764 1757 2289 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1905, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10288 RequestorUid: 10288 RequestorPkg: com.UniConnection.ARShouting UnderlyingNetworks: Null] ] 06-09 10:02:04.764 1757 2289 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1905, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10288 RequestorUid: 10288 RequestorPkg: com.UniConnection.ARShouting UnderlyingNetworks: Null] ] 06-09 10:02:04.765 1757 2297 D ConnectivityService: NetReassign [1905 : null → 111] [c 0] [a 2] [i 6] 06-09 10:02:04.767 29913 29949 I Unity : [EOS] EOSAuthInterface.Login 06-09 10:02:04.767 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginOptions(LoginOptions, OnAuthLoginCallback) 06-09 10:02:04.767 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginTypeAndToken(LoginCredentialType, ExternalCredentialType, String, String, OnAuthLoginCallback) 06-09 10:02:04.767 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.Samples.EOS_LoginManager:LoginProcess(UnityAction, UnityAction) 06-09 10:02:04.767 29913 29949 I Unity : TopMenuTransit:OnEnter(StartScreenTransit, StartTransitBase) 06-09 10:02:04.767 29913 29949 I Unity : StartScreenTransit:ChangeState(StartTransitBase) 06-09 10:02:04.767 29913 29949 I Unity : d0:MoveNext() 06-09 10:02:04.767 29913 29949 I Unity : System.Threading.ExecutionContext:RunInternal(ExecutionContext, ContextCallback, Object, Boolean) 06-09 10:02:04.767 29913 29949 I Unity : System.Runtime.CompilerServices.MoveNextRunner:Run() 06-09 10:02:04.767 29913 29949 I Unity : Cysharp.Threading.Tasks.UniTaskCompletionSourceCore1:TrySetResult(TResult) 06-09 10:02:04.767 29913 29949 I Unity : Cysharp.Threading.Tasks.DelayPromise:MoveNext() 06-09 10:02:04.767 29913 29949 I Unity : Cysharp.Threading.Tasks.Internal.PlayerLoopRunner:RunCore() 06-09 10:02:04.767 29913 29949 I Unity : 06-09 10:02:04.828 29913 29949 I EngineFactory: Provider GmsCore_OpenSSL not available 06-09 10:02:04.831 29913 29949 W Unity : 2023-06-09T10:02:04.8313140+09:00 LogEOSAuth(Warning): No existing persistent auth credentials were found for automatic login. 06-09 10:02:04.833 29913 29949 I Unity : Attempting to login... 06-09 10:02:04.833 29913 29949 I Unity : TopMenuTransit:OnEnter(StartScreenTransit, StartTransitBase) 06-09 10:02:04.833 29913 29949 I Unity : StartScreenTransit:ChangeState(StartTransitBase) 06-09 10:02:04.833 29913 29949 I Unity : <OnEnter>d__0:MoveNext() 06-09 10:02:04.833 29913 29949 I Unity : System.Threading.ExecutionContext:RunInternal(ExecutionContext, ContextCallback, Object, Boolean) 06-09 10:02:04.833 29913 29949 I Unity : System.Runtime.CompilerServices.MoveNextRunner:Run() 06-09 10:02:04.833 29913 29949 I Unity : Cysharp.Threading.Tasks.UniTaskCompletionSourceCore1:TrySetResult(TResult) 06-09 10:02:04.833 29913 29949 I Unity : Cysharp.Threading.Tasks.DelayPromise:MoveNext() 06-09 10:02:04.833 29913 29949 I Unity : Cysharp.Threading.Tasks.Internal.PlayerLoopRunner:RunCore() 06-09 10:02:04.833 29913 29949 I Unity : 06-09 10:02:04.847 29913 29949 I Unity : [EOS] End_LoginInvalidAuth 06-09 10:02:04.847 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass64_0:b0(LoginCallbackInfo&) 06-09 10:02:04.847 29913 29949 I Unity : Epic.OnlineServices.Auth.AuthInterface:OnLoginCallbackInternalImplementation(LoginCallbackInfoInternal&) 06-09 10:02:04.847 29913 29949 I Unity : Epic.OnlineServices.Bindings:EOS_Platform_Tick(IntPtr) 06-09 10:02:04.847 29913 29949 I Unity : 06-09 10:02:04.848 29913 29949 I Unity : [EOS] OnLoginCallBackInvalidAuth 06-09 10:02:04.848 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass64_0:b0(LoginCallbackInfo&) 06-09 10:02:04.848 29913 29949 I Unity : Epic.OnlineServices.Auth.AuthInterface:OnLoginCallbackInternalImplementation(LoginCallbackInfoInternal&) 06-09 10:02:04.848 29913 29949 I Unity : Epic.OnlineServices.Bindings:EOS_Platform_Tick(IntPtr) 06-09 10:02:04.848 29913 29949 I Unity : 06-09 10:02:04.849 29913 29949 I Unity : [EOS]EnterLogin 06-09 10:02:04.849 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.Samples.<>cDisplayClass6_0:b0(LoginCallbackInfo) 06-09 10:02:04.849 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass55_0:b0(LoginCallbackInfo) 06-09 10:02:04.849 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass64_0:b0(LoginCallbackInfo&) 06-09 10:02:04.849 29913 29949 I Unity : Epic.OnlineServices.Auth.AuthInterface:OnLoginCallbackInternalImplementation(LoginCallbackInfoInternal&) 06-09 10:02:04.849 29913 29949 I Unity : Epic.OnlineServices.Bindings:EOS_Platform_Tick(IntPtr) 06-09 10:02:04.849 29913 29949 I Unity : 06-09 10:02:04.850 29913 29949 I Unity : [EOS] StartLoginWithLoginOptions 06-09 10:02:04.850 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginOptions(LoginOptions, OnAuthLoginCallback) 06-09 10:02:04.850 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginTypeAndToken(LoginCredentialType, ExternalCredentialType, String, String, OnAuthLoginCallback) 06-09 10:02:04.850 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass55_0:b0(LoginCallbackInfo) 06-09 10:02:04.850 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass64_0:b0(LoginCallbackInfo&) 06-09 10:02:04.850 29913 29949 I Unity : Epic.OnlineServices.Auth.AuthInterface:OnLoginCallbackInternalImplementation(LoginCallbackInfoInternal&) 06-09 10:02:04.850 29913 29949 I Unity : Epic.OnlineServices.Bindings:EOS_Platform_Tick(IntPtr) 06-09 10:02:04.850 29913 29949 I Unity : 06-09 10:02:04.851 29913 29949 I Unity : [EOS] EOSAuthInterface.Login 06-09 10:02:04.851 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginOptions(LoginOptions, OnAuthLoginCallback) 06-09 10:02:04.851 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:StartLoginWithLoginTypeAndToken(LoginCredentialType, ExternalCredentialType, String, String, OnAuthLoginCallback) 06-09 10:02:04.851 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass55_0:b0(LoginCallbackInfo) 06-09 10:02:04.851 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.<>cDisplayClass64_0:b__0(LoginCallbackInfo&) 06-09 10:02:04.851 29913 29949 I Unity : Epic.OnlineServices.Auth.AuthInterface:OnLoginCallbackInternalImplementation(LoginCallbackInfoInternal&) 06-09 10:02:04.851 29913 29949 I Unity : Epic.OnlineServices.Bindings:EOS_Platform_Tick(IntPtr) 06-09 10:02:04.851 29913 29949 I Unity : 06-09 10:02:04.922 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 10:02:04.922 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 7, orientation 0 06-09 10:02:04.922 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 11.195570 06-09 10:02:04.922 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 11.195570 06-09 10:02:05.002 29913 29913 I ExoPlayerImpl: Init a1c7f9c [AndroidXMedia3/1.0.1] [cheetah, Pixel 7 Pro, Google, 33] 06-09 10:02:05.020 29913 29913 I Ads : ExoPlayerAdapter initialized. 06-09 10:02:05.074 29913 30217 I DMCodecAdapterFactory: Creating an asynchronous MediaCodec adapter for track type audio 06-09 10:02:05.076 29913 30220 D CCodec : allocate(c2.android.aac.decoder) 06-09 10:02:05.077 29913 30220 I Codec2Client: Available Codec2 services: "default" "default1" "default2" "software" 06-09 10:02:05.078 29913 30220 I CCodec : setting up 'default' as default (vendor) store 06-09 10:02:05.083 1541 14964 V C2Store : in init 06-09 10:02:05.083 1541 14964 V C2Store : loading dll 06-09 10:02:05.085 29913 30220 I CCodec : Created component [c2.android.aac.decoder] 06-09 10:02:05.085 29913 30220 D CCodecConfig: read media type: audio/mp4a-latm 06-09 10:02:05.087 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.max-count.values 06-09 10:02:05.087 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: output.subscribed-indices.values 06-09 10:02:05.087 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: input.buffers.allocator-ids.values 06-09 10:02:05.087 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.allocator-ids.values 06-09 10:02:05.087 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.allocator-ids.values 06-09 10:02:05.088 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.pool-ids.values 06-09 10:02:05.088 29913 30220 D ReflectedParamUpdater: extent() != 1 for single value type: algo.buffers.pool-ids.values 06-09 10:02:05.090 29913 30220 I CCodecConfig: query failed after returning 20 values (BAD_INDEX) 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2 config diff is Dict { 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 coded.aac-packaging.value = 0 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 coded.bitrate.value = 64000 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 coded.pl.level = 0 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 coded.pl.profile = 8192 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::i32 coding.drc.album-mode.value = 0 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::float coding.drc.attenuation-factor.value = 1 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::float coding.drc.boost-factor.value = 1 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::i32 coding.drc.compression-mode.value = 3 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::i32 coding.drc.effect-type.value = 3 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::float coding.drc.encoded-level.value = 0.25 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::float coding.drc.reference-level.value = -16 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 input.buffers.max-size.value = 8192 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 input.delay.value = 0 06-09 10:02:05.090 29913 30220 D CCodecConfig: string input.media-type.value = "audio/mp4a-latm" 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 output.delay.value = 2 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::float output.drc.output-loudness.value = 0.25 06-09 10:02:05.090 29913 30220 D CCodecConfig: string output.media-type.value = "audio/raw" 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 raw.channel-count.value = 1 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 raw.channel-mask.value = 0 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 raw.max-channel-count.value = 8 06-09 10:02:05.090 29913 30220 D CCodecConfig: c2::u32 raw.sample-rate.value = 44100 06-09 10:02:05.090 29913 30220 D CCodecConfig: } 06-09 10:02:05.091 29913 30220 I MediaCodec: MediaCodec will operate in async mode 06-09 10:02:05.091 29913 30220 D MediaCodec: flushMediametrics 06-09 10:02:05.091 29913 30220 D CCodec : [c2.android.aac.decoder] buffers are bound to CCodec for this session 06-09 10:02:05.091 29913 30220 D CCodecConfig: no c2 equivalents for log-session-id 06-09 10:02:05.091 29913 30220 D CCodecConfig: no c2 equivalents for flags 06-09 10:02:05.092 29913 30220 D CCodecConfig: config failed => CORRUPTED 06-09 10:02:05.092 29913 30220 D CCodecConfig: c2 config diff is c2::u32 raw.channel-count.value = 2 06-09 10:02:05.092 29913 30220 W Codec2Client: query -- param skipped: index = 1107298332. 06-09 10:02:05.092 29913 30220 D CCodec : client requested max input size 540, which is smaller than what component recommended (8192); overriding with component recommendation. 06-09 10:02:05.092 29913 30220 W CCodec : This behavior is subject to change. It is recommended that app developers double check whether the requested max input size is in reasonable range. 06-09 10:02:05.092 29913 30220 D CCodec : encoding statistics level = 0 06-09 10:02:05.092 29913 30220 D CCodec : setup formats input: AMessage(what = 0x00000000) = { 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-album-mode = 0 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-boost-level = 127 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-cut-level = 127 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-effect-type = 3 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-encoded-target-level = -1 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-max-output-channel_count = 8 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-target-ref-level = 64 06-09 10:02:05.092 29913 30220 D CCodec : int32_t bitrate = 64000 06-09 10:02:05.092 29913 30220 D CCodec : int32_t channel-count = 2 06-09 10:02:05.092 29913 30220 D CCodec : int32_t channel-mask = 0 06-09 10:02:05.092 29913 30220 D CCodec : int32_t level = 0 06-09 10:02:05.092 29913 30220 D CCodec : int32_t max-input-size = 8192 06-09 10:02:05.092 29913 30220 D CCodec : int32_t max-output-channel-count = 8 06-09 10:02:05.092 29913 30220 D CCodec : string mime = "audio/mp4a-latm" 06-09 10:02:05.092 29913 30220 D CCodec : int32_t profile = 2 06-09 10:02:05.092 29913 30220 D CCodec : int32_t sample-rate = 44100 06-09 10:02:05.092 29913 30220 D CCodec : } 06-09 10:02:05.092 29913 30220 D CCodec : setup formats output: AMessage(what = 0x00000000) = { 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-album-mode = 0 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-boost-level = 127 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-cut-level = 127 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-effect-type = 3 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-drc-output-loudness = -1 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-encoded-target-level = -1 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-max-output-channel_count = 8 06-09 10:02:05.092 29913 30220 D CCodec : int32_t aac-target-ref-level = 64 06-09 10:02:05.092 29913 30220 D CCodec : int32_t channel-count = 2 06-09 10:02:05.092 29913 30220 D CCodec : int32_t channel-mask = 0 06-09 10:02:05.092 29913 30220 D CCodec : int32_t max-output-channel-count = 8 06-09 10:02:05.092 29913 30220 D CCodec : string mime = "audio/raw" 06-09 10:02:05.092 29913 30220 D CCodec : int32_t sample-rate = 44100 06-09 10:02:05.092 29913 30220 D CCodec : int32_t android._config-pcm-encoding = 2 06-09 10:02:05.092 29913 30220 D CCodec : } 06-09 10:02:05.092 29913 30220 I CCodecConfig: query failed after returning 20 values (BAD_INDEX) 06-09 10:02:05.093 29913 30217 D MediaCodec: keep callback message for reclaim 06-09 10:02:05.093 29913 30220 W Codec2Client: query -- param skipped: index = 1342179345. 06-09 10:02:05.093 29913 30220 W Codec2Client: query -- param skipped: index = 2415921170. 06-09 10:02:05.093 29913 30220 W Codec2Client: query -- param skipped: index = 1610614798. 06-09 10:02:05.093 29913 30220 D C2Store : debug.c2.use_dmabufheaps set, forcing DMABUF Heaps 06-09 10:02:05.093 29913 30220 D C2Store : Using DMABUF Heaps 06-09 10:02:05.094 29913 30220 D CCodecBufferChannel: [c2.android.aac.decoder#104] Created input block pool with allocatorID 16 => poolID 17 - OK (0) 06-09 10:02:05.095 29913 30220 I CCodecBufferChannel: [c2.android.aac.decoder#104] Created output block pool with allocatorID 16 => poolID 105 - OK 06-09 10:02:05.095 29913 30220 D CCodecBufferChannel: [c2.android.aac.decoder#104] Configured output block pool ids 105 => OK 06-09 10:02:05.096 29913 30220 I DMABUFHEAPS: Using DMA-BUF heap named: system 06-09 10:02:05.096 1541 30225 D SimpleC2Component: Using output block pool with poolID 105 => got 105 - 0 06-09 10:02:05.115 29913 30217 I DMCodecAdapterFactory: Creating an asynchronous MediaCodec adapter for track type video 06-09 10:02:05.117 29913 30234 D CCodec : allocate(c2.exynos.h264.decoder) 06-09 10:02:05.118 29913 30234 I CCodec : setting up 'default' as default (vendor) store 06-09 10:02:05.121 1371 16304 I samsung.hardware.media.c2@1.0-service: missing struct descriptor #Param::CoreIndex(--002) for field mastering of struct #Param::CoreIndex(--180a) 06-09 10:02:05.121 1371 16304 I samsung.hardware.media.c2@1.0-service: missing struct descriptor #Param::CoreIndex(--002) for field mastering of struct #Param::CoreIndex(--180a) 06-09 10:02:05.122 1371 16304 W ColorUtils: expected specified color aspects (0:0:0:0) 06-09 10:02:05.123 29913 30234 I CCodec : Created component [c2.exynos.h264.decoder] 06-09 10:02:05.123 29913 30234 D CCodecConfig: read media type: video/avc 06-09 10:02:05.125 29913 30234 D ReflectedParamUpdater: extent() != 1 for single value type: output.subscribed-indices.values 06-09 10:02:05.125 29913 30234 D ReflectedParamUpdater: extent() != 1 for single value type: input.buffers.allocator-ids.values 06-09 10:02:05.125 29913 30234 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.allocator-ids.values 06-09 10:02:05.125 29913 30234 D ReflectedParamUpdater: extent() != 1 for single value type: output.buffers.pool-ids.values 06-09 10:02:05.127 29913 30234 D ReflectedParamUpdater: ignored struct field coded.color-format.locations 06-09 10:02:05.129 29913 30234 D CCodecConfig: ignoring local param raw.size (0xd2001800) as it is already supported 06-09 10:02:05.129 29913 30234 D CCodecConfig: ignoring local param default.color (0x5200180b) as it is already supported 06-09 10:02:05.129 29913 30234 D ReflectedParamUpdater: ignored struct field raw.hdr-static-info.mastering 06-09 10:02:05.129 29913 30234 I CCodecConfig: query failed after returning 15 values (BAD_INDEX) 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2 config diff is Dict { 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 algo.low-latency.value = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::i32 algo.priority.value = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::float algo.rate.value = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.pl.level = 20496 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.pl.profile = 20481 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.vui.color.matrix = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.vui.color.primaries = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.vui.color.range = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 coded.vui.color.transfer = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 default.color.matrix = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 default.color.primaries = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 default.color.range = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 default.color.transfer = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 input.buffers.max-size.value = 7340032 06-09 10:02:05.129 29913 30234 D CCodecConfig: string input.media-type.value = "video/avc" 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 output.delay.value = 8 06-09 10:02:05.129 29913 30234 D CCodecConfig: string output.media-type.value = "video/raw" 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.color.matrix = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.color.primaries = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.color.range = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.color.transfer = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::float raw.hdr-static-info.max-cll = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::float raw.hdr-static-info.max-fall = 0 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.max-size.height = 240 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.max-size.width = 320 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::u32 raw.pixel-format.value = 34 06-09 10:02:05.129 29913 30234 D CCodecConfig: c2::i32 raw.rotation.flip = 06-09 10:02:05.129 29913 30234 W ColorUtils: expected specified color aspects (0:0:0:0) 06-09 10:02:05.132 29913 30233 I MediaCodec: MediaCodec will operate in async mode 06-09 10:02:05.132 29913 30233 D MediaCodec: flushMediametrics 06-09 10:02:05.133 29913 30233 D SurfaceUtils: connecting to surface 0xb4000076861522f0, reason connectToSurface 06-09 10:02:05.133 29913 30233 I MediaCodec: [c2.exynos.h264.decoder] setting surface generation to 30630913 06-09 10:02:05.133 29913 30233 D SurfaceUtils: disconnecting from surface 0xb4000076861522f0, reason connectToSurface(reconnect) 06-09 10:02:05.133 29913 30233 D SurfaceUtils: connecting to surface 0xb4000076861522f0, reason connectToSurface(reconnect) 06-09 10:02:05.133 29913 30234 D CCodec : [c2.exynos.h264.decoder] buffers are bound to CCodec for this session 06-09 10:02:05.134 29913 30234 D CCodecConfig: no c2 equivalents for log-session-id 06-09 10:02:05.134 29913 30234 D CCodecConfig: no c2 equivalents for color-standard 06-09 10:02:05.134 29913 30234 D CCodecConfig: no c2 equivalents for csd-1 06-09 10:02:05.134 29913 30234 D CCodecConfig: no c2 equivalents for native-window 06-09 10:02:05.134 29913 30234 D CCodecConfig: no c2 equivalents for flags 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2 config diff is c2::u32 default.color.matrix = 1 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 default.color.primaries = 1 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 default.color.range = 2 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 default.color.transfer = 3 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 raw.max-size.height = 720 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 raw.max-size.width = 1280 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 raw.size.height = 720 06-09 10:02:05.135 29913 30234 D CCodecConfig: c2::u32 raw.size.width = 1280 06-09 10:02:05.136 29913 30234 W Codec2Client: query -- param skipped: index = 1107298332. 06-09 10:02:05.136 29913 30234 D CCodec : client requested max input size 74386, which is smaller than what component recommended (7340032); overriding with component recommendation. 06-09 10:02:05.136 29913 30234 W CCodec : This behavior is subject to change. It is recommended that app developers double check whether the requested max input size is in reasonable range. 06-09 10:02:05.136 29913 30234 D CCodec : encoding statistics level = 0 06-09 10:02:05.136 29913 30234 D CCodec : setup formats input: AMessage(what = 0x00000000) = { 06-09 10:02:05.136 29913 30234 D CCodec : int32_t height = 720 06-09 10:02:05.136 29913 30234 D CCodec : int32_t level = 65536 06-09 10:02:05.136 29913 30234 D CCodec : int32_t max-input-size = 7340032 06-09 10:02:05.136 29913 30234 D CCodec : string mime = "video/avc" 06-09 10:02:05.136 29913 30234 D CCodec : int32_t priority = 0 06-09 10:02:05.136 29913 30234 D CCodec : int32_t profile = 65536 06-09 10:02:05.136 29913 30234 D CCodec : int32_t width = 1280 06-09 10:02:05.136 29913 30234 D CCodec : Rect crop(0, 0, 1279, 719) 06-09 10:02:05.136 29913 30234 D CCodec : } 06-09 10:02:05.136 29913 30234 D CCodec : setup formats output: AMessage(what = 0x00000000) = { 06-09 10:02:05.136 29913 30234 D CCodec : int32_t android._color-format = 2130708361 06-09 10:02:05.136 29913 30234 D CCodec : int32_t android._video-scaling = 1 06-09 10:02:05.136 29913 30234 D CCodec : int32_t rotation-degrees = 0 06-09 10:02:05.136 29913 30234 D CCodec : int32_t color-standard = 1 06-09 10:02:05.136 29913 30234 D CCodec : int32_t color-range = 2 06-09 10:02:05.136 29913 30234 D CCodec : int32_t color-transfer = 3 06-09 10:02:05.136 29913 30234 D CCodec : float cta861.max-cll = 0.000000 06-09 10:02:05.136 29913 30234 D CCodec : float cta861.max-fall = 0.000000 06-09 10:02:05.136 29913 30234 D CCodec : int32_t sar-height = 1 06-09 10:02:05.136 29913 30234 D CCodec : int32_t sar-width = 1 06-09 10:02:05.136 29913 30234 D CCodec : Rect crop(0, 0, 1279, 719) 06-09 10:02:05.136 29913 30234 D CCodec : int32_t width = 1280 06-09 10:02:05.136 29913 30234 D CCodec : int32_t height = 720 06-09 10:02:05.136 29913 30234 D CCodec : int32_t max-height = 720 06-09 10:02:05.136 29913 30234 D CCodec : int32_t max-width = 1280 06-09 10:02:05.136 29913 30234 D CCodec : string mime = "video/raw" 06-09 10:02:05.136 29913 30234 D CCodec : int32_t priority = 0 06-09 10:02:05.136 29913 30234 D CCodec : int32_t android._dataspace = 260 06-09 10:02:05.136 29913 30234 D CCodec : int32_t color-format = 2130708361 06-09 10:02:05.136 29913 30234 D CCodec : } 06-09 10:02:05.136 29913 30234 I CCodecConfig: query failed after returning 15 values (BAD_INDEX) 06-09 10:02:05.137 29913 30234 D CCodecConfig: c2 config diff is c2::u32 raw.color.matrix = 1 06-09 10:02:05.137 29913 30234 D CCodecConfig: c2::u32 raw.color.primaries = 1 06-09 10:02:05.137 29913 30234 D CCodecConfig: c2::u32 raw.color.range = 2 06-09 10:02:05.137 29913 30234 D CCodecConfig: c2::u32 raw.color.transfer = 3 06-09 10:02:05.138 29913 30217 D MediaCodec: keep callback message for reclaim 06-09 10:02:05.139 1371 30236 D libexynosv4l2: try node: /dev/video6 06-09 10:02:05.139 1371 30236 I libexynosv4l2: node found for device s5p-mfc-dec: /dev/video6 06-09 10:02:05.147 1371 30236 I libexynosv4l2: open video device /dev/video6 06-09 10:02:05.149 29913 30234 W Codec2Client: query -- param skipped: index = 1073743886. 06-09 10:02:05.149 29913 30234 W Codec2Client: query -- param skipped: index = 1610614798. 06-09 10:02:05.149 29913 30234 W Codec2Client: query -- param skipped: index = 2684356609. 06-09 10:02:05.150 29913 30234 D CCodecBufferChannel: [c2.exynos.h264.decoder#343] Created input block pool with allocatorID 16 => poolID 18 - OK (0) 06-09 10:02:05.151 29913 30234 I CCodecBufferChannel: [c2.exynos.h264.decoder#343] Created output block pool with allocatorID 18 => poolID 78 - OK 06-09 10:02:05.151 29913 30234 D CCodecBufferChannel: [c2.exynos.h264.decoder#343] Configured output block pool ids 78 => OK 06-09 10:02:05.151 29913 30234 D Codec2-OutputBufferQueue: remote graphic buffer migration 0/0 06-09 10:02:05.151 29913 30234 D Codec2Client: setOutputSurface -- failed to set consumer usage (6/BAD_INDEX) 06-09 10:02:05.151 29913 30234 D Codec2Client: setOutputSurface -- generation=30630913 consumer usage=0x900 06-09 10:02:05.153 1371 16304 D C2BqBuffer: local generation change 30630913 , bqId: 128475356725250 migrated buffers # 0 06-09 10:02:05.153 29913 30234 D Codec2Client: Surface configure completed 06-09 10:02:05.154 1471 4969 W ResourceManagerService: Ignoring request to add new resource entry with value <= 0 06-09 10:02:05.157 1541 30225 I C2SoftAacDec: Reconfiguring decoder: 0->44100 Hz, 0->2 channels 06-09 10:02:05.164 29913 30220 D CCodecConfig: c2 config diff is c2::u32 raw.channel-mask.value = 12 06-09 10:02:05.164 29913 30220 D CCodecBuffers: [c2.android.aac.decoder#104:Output[N]] popFromStashAndRegister: at 1000000000000us, output format changed to AMessage(what = 0x00000000) = { 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-drc-album-mode = 0 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-drc-boost-level = 127 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-drc-cut-level = 127 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-drc-effect-type = 3 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-drc-output-loudness = -1 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-encoded-target-level = -1 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-max-output-channel_count = 8 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t aac-target-ref-level = 64 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t channel-count = 2 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t channel-mask = 12 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t max-output-channel-count = 8 06-09 10:02:05.164 29913 30220 D CCodecBuffers: string mime = "audio/raw" 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t sample-rate = 44100 06-09 10:02:05.164 29913 30220 D CCodecBuffers: int32_t android._config-pcm-encoding = 2 06-09 10:02:05.164 29913 30220 D CCodecBuffers: } 06-09 10:02:05.165 1371 30236 D ExynosVideoDecoder: MFC_Decoder_Enqueue_Inbuf: DATA with flags(0x20000000) 06-09 10:02:05.167 1371 30236 I ExynosVideoCodecDec-H264Dec: [updateResolution] resolution info : 1280 x 720 (0, 0, 1280, 720) 06-09 10:02:05.168 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] output delay(8) 06-09 10:02:05.168 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] reorder key(0) 06-09 10:02:05.168 1371 30235 I ExynosC2DecComponent: [processCSDInfo] update configurations on c2work(0xb4000075e0957c60) via c2work(0xb4000075e0957580) 06-09 10:02:05.169 29913 30234 D Codec2-OutputBufferQueue: set max dequeue count 15 from update 06-09 10:02:05.169 1371 30240 D ExynosVideoDecoder: MFC_Decoder_Enqueue_Inbuf: DATA with flags(0x20000000) 06-09 10:02:05.169 1371 30240 D ExynosVideoDecoder: MFC_Decoder_Enqueue_Inbuf: DATA with flags(0x20000000) 06-09 10:02:05.172 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] output delay(8) 06-09 10:02:05.173 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] reorder key(0) 06-09 10:02:05.173 29913 30224 D CCodecBufferChannel: [c2.exynos.h264.decoder#343] Ignoring stale input buffer done callback: last flush index = 0, frameIndex = 0 06-09 10:02:05.173 29913 30234 D Codec2-OutputBufferQueue: set max dequeue count 15 from update 06-09 10:02:05.173 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] output delay(8) 06-09 10:02:05.173 1371 30235 I ExynosC2H264DecComponent: [updateC2Config_OutputDelay] reorder key(0) 06-09 10:02:05.174 29913 30234 D Codec2-OutputBufferQueue: set max dequeue count 15 from update 06-09 10:02:05.177 1362 2021 I suez-nanoapp-clients: Barometric peak detected: magnitude = 0.107888 hPa (bucket: 2), duration = 80.000000 ms (bucket: 7). 06-09 10:02:05.177 1549 1717 I CHRE : @ 160560.268: [ip] Peak detected: magnitude = 0.107888 hpa, duration = 80.000001 ms 06-09 10:02:05.177 1332 1347 D ContextHubHal: Got message from nanoapp: ID 0x476f6f676c001022 06-09 10:02:05.178 1362 2021 I suez-nanoapp-clients: Vendor atom [id = 100047] reported. 06-09 10:02:05.178 1757 2324 E ContextHubClientManager: Cannot send message to unregistered client (host endpoint ID = -28638) 06-09 10:02:05.273 29913 29949 W Unity : 2023-06-09T10:02:05.2735610+09:00 LogEOSEcom(Warning): Purchase flow is disabled due to overlay setup failure (EOS_NotConfigured). 06-09 10:02:05.297 29913 29913 D CompatibilityChangeReporter: Compat change id reported: 210923482; UID 10288; state: DISABLED 06-09 10:02:05.297 29913 29913 D CompatibilityChangeReporter: Compat change id reported: 37756858; UID 10288; state: ENABLED 06-09 10:02:05.307 29913 29913 I DynamiteModule: Considering local module com.google.android.gms.ads.dynamite:0 and remote module com.google.android.gms.ads.dynamite:231710100 06-09 10:02:05.308 29913 29913 I DynamiteModule: Selected remote version of com.google.android.gms.ads.dynamite, version >= 231710100 06-09 10:02:05.313 1757 4996 I ActivityTaskManager: START u0 {act=android.intent.action.VIEW dat=https://epicgames.com/... flg=0x58080001 cmp=com.android.chrome/com.google.android.apps.chrome.IntentDispatcher} from uid 10288 06-09 10:02:05.325 1757 4996 D CompatibilityChangeReporter: Compat change id reported: 194480991; UID 10184; state: ENABLED 06-09 10:02:05.331 1757 4996 D CompatibilityChangeReporter: Compat change id reported: 197654537; UID 10184; state: ENABLED 06-09 10:02:05.334 1757 4996 D CompatibilityChangeReporter: Compat change id reported: 205907456; UID 10184; state: ENABLED 06-09 10:02:05.335 29913 30159 D TrafficStats: tagSocket(359) with statsTag=0xffffffff, statsUid=-1 06-09 10:02:05.338 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 135634846; UID 10184; state: DISABLED 06-09 10:02:05.338 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 177438394; UID 10184; state: DISABLED 06-09 10:02:05.338 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 135772972; UID 10184; state: DISABLED 06-09 10:02:05.338 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 135754954; UID 10184; state: ENABLED 06-09 10:02:05.338 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 143937733; UID 10184; state: ENABLED 06-09 10:02:05.348 1290 1290 D Zygote : Forked child process 30250 06-09 10:02:05.348 1757 1835 I ActivityManager: Start proc 30250:com.android.chrome/u0a184 for next-top-activity {com.android.chrome/com.google.android.apps.chrome.IntentDispatcher} 06-09 10:02:05.355 5521 29282 W NetworkScheduler: Error inserting flex_time=1909000 job_id=-1 period=3820000 source=16 requires_charging=0 preferred_network_type=1 target_class=com.google.android.gms.measurement.PackageMeasurementTaskService user_id=0 target_package=com.google.android.gms tag=Measurement.PackageMeasurementTaskService.UPLOAD_TASK_TAG task_type=0 required_idleness_state=0 service_kind=0 source_version=231819000 persistence_level=1 preferred_charging_state=1 required_network_type=0 runtime=1686272525354 retry_strategy={"maximum_backoff_seconds":{"3600":0},"initial_backoff_seconds":{"30":0},"retry_policy":{"0":0}} last_runtime=0 [CONTEXT service_id=218 ] 06-09 10:02:05.355 5521 29282 W NetworkScheduler: android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: pending_ops.tag, pending_ops.target_class, pending_ops.target_package, pending_ops.user_id (code 2067 SQLITE_CONSTRAINT_UNIQUE) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:961) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:790) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:89) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1868) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertOrThrow(SQLiteDatabase.java:1763) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at byui.f(:com.google.android.gms@231819044@23.18.19 (190400-536743017):59) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at bytb.n(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at bytb.u(:com.google.android.gms@231819044@23.18.19 (190400-536743017):20) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at bytb.h(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at byot.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):9) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at aced.c(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at aced.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):7) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at acjn.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 10:02:05.355 5521 29282 W NetworkScheduler: at java.lang.Thread.run(Thread.java:1012) 06-09 10:02:05.360 30250 30250 I .android.chrome: Using CollectorTypeCC GC. 06-09 10:02:05.363 30250 30250 E .android.chrome: Not starting debugger since process cannot load the jdwp agent. 06-09 10:02:05.367 1757 4996 D CompatibilityChangeReporter: Compat change id reported: 168419799; UID 10184; state: DISABLED 06-09 10:02:05.369 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 171979766; UID 10184; state: ENABLED 06-09 10:02:05.375 29913 29949 D tion.ARShouting: PlayerBase::stop() from IPlayer 06-09 10:02:05.375 29913 29949 D AudioTrack: stop(180): called with 221184 frames delivered 06-09 10:02:05.375 30250 30250 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.375 30250 30250 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.376 30250 30250 W .android.chrome: Entry not found 06-09 10:02:05.377 30250 30250 D nativeloader: Configuring classloader-namespace for other apk /data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.android.chrome 06-09 10:02:05.377 3919 5191 I AiAiAdaptiveAudio: updateState: enabledInSettings=false, playbackState=PlaybackState{isPlaying=false, contentType=UNSET, isMusicContent=false} 06-09 10:02:05.378 3919 5191 I AiAiAdaptiveAudio: stopMonitoring 06-09 10:02:05.378 3919 5191 I AiAiAdaptiveAudio: Updating calibration state: IDLE -> IDLE 06-09 10:02:05.384 30250 30250 D nativeloader: Configuring classloader-namespace for other apk /data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.android.chrome 06-09 10:02:05.384 1362 1362 D usf_sensor_hal: accelerometer: Enter Batch. period = 200000000, latency = 2000000000. 06-09 10:02:05.386 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for LSM6DSV Accelerometer. 06-09 10:02:05.387 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 0: Enabled 1, odr_index 5, period_ns 20000000. 06-09 10:02:05.387 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 4 Intr: 36. 06-09 10:02:05.388 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 544149ns. 06-09 10:02:05.388 1362 1362 D usf_sensor_hal: IMU temperature: Enter Batch. period = 533334000, latency = 2000000000. 06-09 10:02:05.390 30250 30250 W .android.chrome: JIT profile information will not be recorded: profile file does not exist. 06-09 10:02:05.392 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for LSM6DSV Temperature. 06-09 10:02:05.392 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 2: Enabled 1, odr_index 3, period_ns 66666666. 06-09 10:02:05.393 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 4 Intr: 36. 06-09 10:02:05.393 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 372274ns. 06-09 10:02:05.399 30250 30250 V GraphicsEnvironment: ANGLE Developer option for 'com.android.chrome' set to: 'default' 06-09 10:02:05.400 30250 30250 V GraphicsEnvironment: ANGLE GameManagerService for com.android.chrome: false 06-09 10:02:05.400 30250 30250 V GraphicsEnvironment: Neither updatable production driver nor prerelease driver is supported. 06-09 10:02:05.401 30250 30250 I LoadedApk: No resource references to update in package com.google.android.trichromelibrary 06-09 10:02:05.401 30250 30250 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 10:02:05.401 30250 30250 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 10:02:05.402 30250 30250 I cr_SplitCompatApp: Launched version=114.0.5735.57 minSdkVersion=29 isBundle=true processName=com.android.chrome isIsolated=false 06-09 10:02:05.407 29913 29949 I Unity : EOSSingleton.OnApplicationFocusTrue 06-09 10:02:05.407 29913 29949 I Unity : PlayEveryWare.EpicOnlineServices.EOSSingleton:OnApplicationFocus(Boolean) 06-09 10:02:05.407 29913 29949 I Unity : 06-09 10:02:05.414 30250 30271 I cr_LibraryLoader: Loading monochrome_64 from within /data/app/~~cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk 06-09 10:02:05.415 1757 3092 D CompatibilityChangeReporter: Compat change id reported: 161145287; UID 10184; state: DISABLED 06-09 10:02:05.416 30250 30271 I cr_Linker: loadLibraryImplLocked: monochrome_64, relroMode=1 06-09 10:02:05.422 30250 30274 D vulkan : searching for layers in '/data/app/~~cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64' 06-09 10:02:05.422 30250 30274 D vulkan : searching for layers in '/data/app/~~cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a' 06-09 10:02:05.422 30250 30274 D vulkan : searching for layers in '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a' 06-09 10:02:05.424 30250 30271 I cr_LibraryLoader: Successfully loaded native library 06-09 10:02:05.424 30250 30271 I cr_CachingUmaRecorder: Flushed 26 samples from 24 histograms. 06-09 10:02:05.426 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 183155436; UID 10184; state: ENABLED 06-09 10:02:05.429 1757 3092 I ActivityTaskManager: START u0 {act=android.intent.action.VIEW dat=https://epicgames.com/... flg=0x14002000 cmp=com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity (has extras)} from uid 10184 06-09 10:02:05.432 5521 5521 D BoundBrokerSvc: onBind: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms } 06-09 10:02:05.432 5521 5521 D BoundBrokerSvc: Loading bound service for intent: Intent { act=com.google.android.gms.phenotype.service.START pkg=com.google.android.gms } 06-09 10:02:05.441 1757 2428 W ActivityTaskManager: Tried to set launchTime (0) < mLastActivityLaunchTime (59538260) 06-09 10:02:05.470 30250 30267 W DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found. 06-09 10:02:05.475 30250 30267 W ziparchive: Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/000000f8/DynamiteLoader.dm': No such file or directory 06-09 10:02:05.475 30250 30267 W ziparchive: Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/000000f8/DynamiteLoader.dm': No such file or directory 06-09 10:02:05.476 30250 30281 W cr_PartnerCustomize: Partner homepage must be HTTP(S) or NewTabPage. Got invalid URL "" 06-09 10:02:05.477 1315 29233 D audio_hw_output_stream: update stream 3 active 0 gain 0.000000 06-09 10:02:05.478 30250 30267 I DynamiteModule: Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:7 06-09 10:02:05.478 30250 30267 I DynamiteModule: Selected remote version of com.google.android.gms.googlecertificates, version >= 7 06-09 10:02:05.479 30250 30250 I cr_SplitCompatClassLoader: Splits: null 06-09 10:02:05.486 30250 30267 W System : ClassLoader referenced unknown path: 06-09 10:02:05.487 30250 30267 D nativeloader: Configuring classloader-namespace for other apk . target_sdk_version=33, uses_libraries=, library_path=/data/app/GOTfk1Y9pk1fAIGA6vX-bw==/com.google.android.gms-bPwppPw0Fs5l9c6Ln8Bbzg==/lib/arm64:/data/app/GOTfk1Y9pk1fAIGA6vX-bw==/com.google.android.gms-bPwppPw0Fs5l9c6Ln8Bbzg==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.google.android.gms 06-09 10:02:05.488 30250 30250 I cr_CompositorSurfaceMgr: Transitioning to surface with format: -1 06-09 10:02:05.488 30250 30250 W cr_SplitCompatClassLoader: No class android.widget.View amongst android.util.MapCollections$KeySet@0 06-09 10:02:05.488 30250 30250 W cr_SplitCompatClassLoader: No class android.webkit.View amongst android.util.MapCollections$KeySet@0 06-09 10:02:05.488 30250 30250 W cr_SplitCompatClassLoader: No class android.app.View amongst android.util.MapCollections$KeySet@0 06-09 10:02:05.492 30250 30267 W ziparchive: Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/000000fb/GoogleCertificates.dm': No such file or directory 06-09 10:02:05.492 30250 30267 W ziparchive: Unable to open '/data/user_de/0/com.google.android.gms/app_chimera/m/000000fb/GoogleCertificates.dm': No such file or directory 06-09 10:02:05.493 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 210923482; UID 10184; state: ENABLED 06-09 10:02:05.496 1757 4976 E AppOps : Bad call made by uid 10184. Package "com.google.android.gms" does not belong to uid 10184. 06-09 10:02:05.499 1757 4976 E AppOps : Bad call made by uid 10184. Package "com.google.android.gms" does not belong to uid 10184. 06-09 10:02:05.500 1757 4976 E AppOps : Bad call made by uid 10184. Package "com.google.android.gms" does not belong to uid 10184. 06-09 10:02:05.503 5521 21132 E bwfc : Phenotype API error. Event # edax@564beab0, EventCode: 7 [CONTEXT service_id=51 ] 06-09 10:02:05.503 5521 21132 E bwfc : bwdx: 29505: No config packages for log source, or config package not registered 06-09 10:02:05.503 5521 21132 E bwfc : at bwfz.b(:com.google.android.gms@231819044@23.18.19 (190400-536743017):4) 06-09 10:02:05.503 5521 21132 E bwfc : at bwfw.g(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 10:02:05.503 5521 21132 E bwfc : at bwfc.e(:com.google.android.gms@231819044@23.18.19 (190400-536743017):4) 06-09 10:02:05.503 5521 21132 E bwfc : at bwfc.f(:com.google.android.gms@231819044@23.18.19 (190400-536743017):2) 06-09 10:02:05.503 5521 21132 E bwfc : at avsy.eo(:com.google.android.gms@231819044@23.18.19 (190400-536743017):1) 06-09 10:02:05.503 5521 21132 E bwfc : at avtf.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):14) 06-09 10:02:05.503 5521 21132 E bwfc : at dfhf.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):2) 06-09 10:02:05.503 5521 21132 E bwfc : at aced.c(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 10:02:05.503 5521 21132 E bwfc : at aced.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):7) 06-09 10:02:05.503 5521 21132 E bwfc : at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) 06-09 10:02:05.503 5521 21132 E bwfc : at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637) 06-09 10:02:05.503 5521 21132 E bwfc : at acjn.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 10:02:05.503 5521 21132 E bwfc : at java.lang.Thread.run(Thread.java:1012) 06-09 10:02:05.503 5521 21132 W AsyncOperation: operation=GetExperimentTokensOperationCall, opStatusCode=29505 [CONTEXT service_id=51 ] 06-09 10:02:05.503 5521 21132 W AsyncOperation: OperationException[Status{statusCode=No config packages for log source, or config package not registered, resolution=null}] 06-09 10:02:05.503 5521 21132 W AsyncOperation: at bwfc.e(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at bwfc.f(:com.google.android.gms@231819044@23.18.19 (190400-536743017):2) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at avsy.eo(:com.google.android.gms@231819044@23.18.19 (190400-536743017):1) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at avtf.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):14) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at dfhf.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):2) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at aced.c(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at aced.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):7) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at acjn.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 10:02:05.503 5521 21132 W AsyncOperation: at java.lang.Thread.run(Thread.java:1012) 06-09 10:02:05.511 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 193247900; UID 10184; state: ENABLED 06-09 10:02:05.525 30250 30267 W cr_PartnerCustomize: Partner homepage must be HTTP(S) or NewTabPage. Got invalid URL "" 06-09 10:02:05.525 30250 30250 I ContentCaptureHelper: Setting logging level to OFF 06-09 10:02:05.536 30250 30250 I ContentCaptureHelper: Setting logging level to OFF 06-09 10:02:05.538 1757 2428 D CoreBackPreview: Window{389f254 u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@7bddfc0, mPriority=-1} 06-09 10:02:05.539 1757 2428 D CoreBackPreview: Window{389f254 u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@1545a9f, mPriority=0} 06-09 10:02:05.540 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 143937733; UID 10184; state: ENABLED 06-09 10:02:05.542 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 135634846; UID 10184; state: DISABLED 06-09 10:02:05.542 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 177438394; UID 10184; state: DISABLED 06-09 10:02:05.542 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 135772972; UID 10184; state: DISABLED 06-09 10:02:05.542 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 135754954; UID 10184; state: ENABLED 06-09 10:02:05.542 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 207557677; UID 10184; state: ENABLED 06-09 10:02:05.543 1290 1290 W Zygote : forkRepeatedly terminated due to non-simple command 06-09 10:02:05.543 1290 1290 D Zygote : mbuffer starts with 15, nice name is com.android.chrome_zygote, mEnd = 417, mNext = 198, mLinesLeft = 6, mFd = 5 06-09 10:02:05.545 30250 30250 I cr_StartSurfaceConfig: Recorded Startup.Android.FirstDrawCompletedTime.NoInstant = 69 ms 06-09 10:02:05.550 662 662 I hwservicemanager: getTransport: Cannot find entry android.hardware.graphics.allocator@4.0::IAllocator/default in either framework or device VINTF manifest. 06-09 10:02:05.551 661 661 I servicemanager: Found android.hardware.graphics.allocator.IAllocator/default in device VINTF manifest. 06-09 10:02:05.556 1290 1290 D Zygote : Forked child process 30307 06-09 10:02:05.559 1757 1835 W ZygoteProcess: Got error connecting to zygote, retrying. msg= Connection refused 06-09 10:02:05.563 30307 30307 I libc : SetHeapTaggingLevel: tag level set to 0 06-09 10:02:05.568 30307 30307 I d.chrome_zygote: Using CollectorTypeCC GC. 06-09 10:02:05.568 30250 30250 W TextView: onProvideContentCaptureStructure(): calling assumeLayout() 06-09 10:02:05.569 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 163400105; UID 10184; state: ENABLED 06-09 10:02:05.575 1757 1814 I ActivityTaskManager: Displayed com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity: +263ms 06-09 10:02:05.606 1383 1383 I WifiHAL : Creating message to get link statistics; iface = 48 06-09 10:02:05.610 1757 1835 I AppZygote: Starting application preload. 06-09 10:02:05.611 30307 30307 I AppZygoteInit: Beginning application preload for com.android.chrome 06-09 10:02:05.611 30250 30250 I chromium: [INFO:policy_logger.cc(142)] :components/enterprise/browser/controller/chrome_browser_cloud_management_controller.cc(272) Deferring CBCM Controller Initialization until it is unblocked. 06-09 10:02:05.612 30307 30307 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.612 30307 30307 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.612 30307 30307 W d.chrome_zygote: Entry not found 06-09 10:02:05.613 30307 30307 D nativeloader: Configuring classloader-namespace for other apk /data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand 06-09 10:02:05.619 30307 30307 D nativeloader: Configuring classloader-namespace for other apk /data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand 06-09 10:02:05.623 30250 30250 W chromium: [WARNING:instance_id_android.cc(99)] Non-zero TTL requested for InstanceID token, while TTLs are not supported by Android Firebase IID API. 06-09 10:02:05.625 30307 30307 I cr_ZygotePreload: Loaded Zygote. version=114.0.5735.57 minSdkVersion=29 isBundle=true 06-09 10:02:05.626 30250 30250 I cr_SmsProviderGms: construction successfull qX2@9f7d32f, nX2@6376d3c 06-09 10:02:05.628 30307 30307 I cr_LibraryLoader: Loading monochrome_64 from within /data/app/~~cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk 06-09 10:02:05.628 30307 30307 I cr_Linker: loadLibraryImplLocked: monochrome_64, relroMode=1 06-09 10:02:05.630 27339 27339 D BoundBrokerSvc: onBind: Intent { act=com.google.android.gms.credential.manager.service.firstparty.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 10:02:05.630 27339 27339 D BoundBrokerSvc: Loading bound service for intent: Intent { act=com.google.android.gms.credential.manager.service.firstparty.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 10:02:05.634 30250 30329 W InstanceID: Instance ID SDK is deprecated, com.android.chrome should update to use Firebase Instance ID 06-09 10:02:05.637 1757 4996 D ConnectivityService: requestNetwork for uid/pid:10184/30250 activeRequest: null callbackRequest: 1906 [NetworkRequest [ REQUEST id=1907, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 06-09 10:02:05.638 27339 27339 D BoundBrokerSvc: onBind: Intent { act=com.google.android.gms.auth.key.retrieval.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 10:02:05.638 27339 27339 D BoundBrokerSvc: Loading bound service for intent: Intent { act=com.google.android.gms.auth.key.retrieval.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 10:02:05.645 1757 2297 D ConnectivityService: NetReassign [1907 : null → 111] [c 0] [a 1] [i 7] 06-09 10:02:05.645 1757 1835 I AppZygote: Application preload done. 06-09 10:02:05.645 30307 30307 I AppZygoteInit: Application preload done 06-09 10:02:05.646 1383 1383 I WifiHAL : In GetLinkStatsCommand::handleResponse 06-09 10:02:05.652 1757 2297 D ConnectivityService: NetReassign [no changes] [c 1] [a 0] [i 6] 06-09 10:02:05.658 30307 30314 W d.chrome_zygote: Reducing the number of considered missed Gc histogram windows from 5950 to 100 06-09 10:02:05.659 1757 2428 D ConnectivityService: requestNetwork for uid/pid:10184/30250 activeRequest: null callbackRequest: 1909 [NetworkRequest [ REQUEST id=1910, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 06-09 10:02:05.659 30307 30307 I Zygote : Entering forkRepeatedly native zygote loop 06-09 10:02:05.662 1757 2297 D ConnectivityService: NetReassign [1910 : null → 111] [c 1] [a 0] [i 1] 06-09 10:02:05.665 1757 2297 D ConnectivityService: NetReassign [no changes] [c 0] [a 1] [i 0] 06-09 10:02:05.668 1757 2289 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=1907, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1907, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1907, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1907, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=1910, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1910, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1910, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.668 1757 2289 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=1910, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 10184 RequestorUid: 10184 RequestorPkg: com.android.chrome UnderlyingNetworks: Null] ] 06-09 10:02:05.672 1757 2297 D ConnectivityService: NetReassign [no changes] [c 0] [a 1] [i 2] 06-09 10:02:05.673 30250 30250 W cr_KnoxSettingsProvider: Permission to read device policy denied. 06-09 10:02:05.677 30307 30307 D Zygote : Forked child process 30342 06-09 10:02:05.678 1757 1835 W ActivityManager: Slow operation: 139ms so far, now at startProcess: returned from zygote! 06-09 10:02:05.678 1757 1835 W ActivityManager: Slow operation: 139ms so far, now at startProcess: done updating battery stats 06-09 10:02:05.678 1757 1835 W ActivityManager: Slow operation: 139ms so far, now at startProcess: building log message 06-09 10:02:05.678 1757 1835 I ActivityManager: Start proc 30342:com.android.chrome:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:0/u0ai0 for {com.android.chrome/org.chromium.content.app.SandboxedProcessService0:0} 06-09 10:02:05.678 1757 1835 W ActivityManager: Slow operation: 139ms so far, now at startProcess: starting to update pids map 06-09 10:02:05.678 1757 1835 W ActivityManager: Slow operation: 139ms so far, now at startProcess: done updating pids map 06-09 10:02:05.679 1757 1835 W ActivityManager: Slow operation: 67ms so far, now at startProcess: asking zygote to start proc 06-09 10:02:05.679 30250 30250 I cr_CompositorSurfaceMgr: Transitioning to surface with format: -1 06-09 10:02:05.679 30250 30250 I cr_CompositorSurfaceMgr: surfaceCreated format: 0 06-09 10:02:05.680 30342 30342 E libc : SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 06-09 10:02:05.683 1290 1290 I Zygote : Entering forkRepeatedly native zygote loop 06-09 10:02:05.684 30250 30250 I cr_ChromeTabbedActivity: #initializeState 06-09 10:02:05.687 30342 30342 I ocessService0:0: Using CollectorTypeCC GC. 06-09 10:02:05.691 30342 30342 E ocessService0:0: Not starting debugger since process cannot load the jdwp agent. 06-09 10:02:05.694 1290 1290 D Zygote : Forked child process 30354 06-09 10:02:05.694 1757 1835 W ActivityManager: Slow operation: 83ms so far, now at startProcess: returned from zygote! 06-09 10:02:05.702 1757 1835 W ActivityManager: Slow operation: 90ms so far, now at startProcess: done updating battery stats 06-09 10:02:05.702 1757 1835 W ActivityManager: Slow operation: 91ms so far, now at startProcess: building log message 06-09 10:02:05.702 1757 1835 I ActivityManager: Start proc 30354:com.android.chrome:privileged_process0/u0a184 for service {com.android.chrome/org.chromium.content.app.PrivilegedProcessService0} 06-09 10:02:05.702 1757 1835 W ActivityManager: Slow operation: 91ms so far, now at startProcess: starting to update pids map 06-09 10:02:05.702 1757 1835 W ActivityManager: Slow operation: 91ms so far, now at startProcess: done updating pids map 06-09 10:02:05.702 30342 30342 D CompatibilityChangeReporter: Compat change id reported: 171979766; UID 90000; state: ENABLED 06-09 10:02:05.711 30250 30332 W cr_media: BLUETOOTH_CONNECT permission is missing. 06-09 10:02:05.712 30250 30332 W cr_media: registerBluetoothIntentsIfNeeded: Requires BLUETOOTH permission 06-09 10:02:05.714 30354 30354 I ileged_process0: Using CollectorTypeCC GC. 06-09 10:02:05.719 30342 30342 I LoadedApk: No resource references to update in package com.google.android.trichromelibrary 06-09 10:02:05.719 30342 30342 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 10:02:05.720 30342 30342 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 10:02:05.720 30342 30342 I cr_SplitCompatApp: Launched version=114.0.5735.57 minSdkVersion=29 isBundle=true processName=com.android.chrome:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:0 isIsolated=true 06-09 10:02:05.721 30354 30354 E ileged_process0: Not starting debugger since process cannot load the jdwp agent. 06-09 10:02:05.725 30342 30342 W SystemServiceRegistry: No service published for: uimode 06-09 10:02:05.727 30342 30342 I cr_ChildProcessService: Creating new ChildProcessService pid=30342 06-09 10:02:05.734 30354 30354 D CompatibilityChangeReporter: Compat change id reported: 171979766; UID 10184; state: ENABLED 06-09 10:02:05.736 30354 30354 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.736 30354 30354 W ziparchive: Unable to open '/data/app/~~FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.dm': No such file or directory 06-09 10:02:05.736 30354 30354 W ileged_process0: Entry not found 06-09 10:02:05.736 30354 30354 D nativeloader: Configuring classloader-namespace for other apk /data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.android.chrome 06-09 10:02:05.739 30342 30370 I cr_LibraryLoader: Successfully loaded native library 06-09 10:02:05.741 30250 30250 D CompatibilityChangeReporter: Compat change id reported: 171228096; UID 10184; state: ENABLED 06-09 10:02:05.742 30354 30354 D nativeloader: Configuring classloader-namespace for other apk /data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/lib/arm64:/data/app/cLyrqKjNPpzz4utfhLrUcA==/com.android.chrome-HNNykoF_76amToobf-XNFQ==/base.apk!/lib/arm64-v8a:/data/app/FaoXL8JhM835oHoYKlInaQ==/com.google.android.trichromelibrary_573505733-rEqmRZG-bNZR8w-J3A3kKQ==/base.apk!/lib/arm64-v8a, permitted_path=/data:/mnt/expand:/data/user/0/com.android.chrome 06-09 10:02:05.744 30342 30370 I cr_CachingUmaRecorder: Flushed 10 samples from 10 histograms. 06-09 10:02:05.744 30354 30354 W ileged_process0: JIT profile information will not be recorded: profile file does not exist. 06-09 10:02:05.747 30250 30250 I cr_OfflineIndicator: onConnectionTypeChanged 2 06-09 10:02:05.754 30250 30250 I cr_OfflineIndicator: Reported by system: [ Transports: CELLULAR Capabilities: IMS&NOT_METERED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED&MMTEL LinkUpBandwidth>=15000Kbps LinkDnBandwidth>=30000Kbps Specifier: <TelephonyNetworkSpecifier [mSubId = 1]> UnderlyingNetworks: Null] 06-09 10:02:05.755 30250 30250 I cr_OfflineIndicator: Reported by system: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=18866Kbps LinkDnBandwidth>=29280Kbps TransportInfo: <SSID: , BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, IP: /172.23.161.165, Security type: 2, Supplicant state: COMPLETED, Wi-Fi standard: 5, RSSI: -55, Link speed: 866Mbps, Tx Link speed: 866Mbps, Max Supported Tx Link speed: 866Mbps, Rx Link speed: 866Mbps, Max Supported Rx Link speed: 866Mbps, Frequency: 5180MHz, Net ID: -1, Metered hint: false, score: 60, isUsable: true, CarrierMerged: false, SubscriptionId: -1, IsPrimary: -1, Trusted: true, Restricted: false, Ephemeral: false, OEM paid: false, OEM private: false, OSU AP: false, FQDN: , Provider friendly name: , Requesting package name: MLO Information: , AP MLD Address: , AP MLO Link Id: , AP MLO Affiliated links: > SignalStrength: -55 UnderlyingNetworks: Null]

06-09 09:38:47.345 30672 30852 W RankedDispatcher: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.345 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 W LegacyVoicePolicyManage: The requested voice is not available for this app identifier 06-09 09:38:47.346 30672 30852 I GoogleTTSServiceImpl: currentLocale = cmn-TW 06-09 09:38:47.346 30672 30852 I RankedDispatcher: Redirect from zh_TW to cmn_TW 06-09 09:38:47.346 30672 30852 W RankedDispatcher: The requested voice is not available for this app identifier 06-09 09:38:47.347 30672 30852 W RankedDispatcher: The requested voice is not available for this app identifier 06-09 09:38:47.468 27339 27339 D BoundBrokerSvc: onUnbind: Intent { act=com.google.android.gms.inappreach.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 09:38:47.761 1548 1548 D AOC : A3:MSG: window_orientation.c, 1158: [WO] Change detected: previous_rotation: 1, proposed_rotation: 0 06-09 09:38:47.761 1548 1548 D AOC : A3:MSG: window_orientation.c, 1162: [WO] Last acceleration 11941 ms ago > threshold. 06-09 09:38:47.761 1548 1548 D AOC : A3:MSG: window_orientation.c, 1164: [WO] z-axis rotation: 0 06-09 09:38:47.763 1548 1548 D AOC : A3:MSG: window_orientation.c, 1165: [WO] Last flat 436 ms ago < threshold. 06-09 09:38:47.763 1548 1548 D AOC : A3:MSG: window_orientation.c, 1168: [WO] Last swinging 566 ms ago > threshold. 06-09 09:38:47.764 1548 1548 D AOC : A3:MSG: window_orientation.c, 1169: [WO] Tilt angle 27 Orientation angle 1075625528 06-09 09:38:47.786 1757 1815 W ImageReader_JNI: Unable to acquire a buffer item, very likely client tried to acquire more than maxImages buffers 06-09 09:38:47.796 1757 1817 I ActivityTaskManager: Config changes=20000480 {1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7390 fontWeightAdjustment=0} 06-09 09:38:47.799 1757 1817 I WindowManager: Override config changes=20000480 {1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7390 fontWeightAdjustment=0} for displayId=0 06-09 09:38:47.800 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 174042980; UID 10288; state: DISABLED 06-09 09:38:47.800 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 184838306; UID 10288; state: DISABLED 06-09 09:38:47.800 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 185004937; UID 10288; state: DISABLED 06-09 09:38:47.800 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 181136395; UID 10288; state: DISABLED 06-09 09:38:47.800 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 174042936; UID 10288; state: DISABLED 06-09 09:38:47.803 1757 1817 I InputManager-JNI: Viewport [0] to add: local:4619827677550801152, isActive: true 06-09 09:38:47.804 1757 2179 I InputReader: Reconfiguring input devices, changes=DISPLAY_INFO | 06-09 09:38:47.807 1315 1346 D audio_hw: adev_set_parameters: enter: rotation=0 06-09 09:38:47.807 1315 1346 D audio_hw_35l41: update rotation 0, enabled 0 06-09 09:38:47.811 2363 2402 V WindowManagerShell: Display changed: 0 06-09 09:38:47.813 1827 2110 E TwoshayTouchContextService: Got new packet! ContextPacket{orientation: PORTRAIT} 06-09 09:38:47.817 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.826 26129 26129 E SurfaceSyncer: Failed to find sync for id=1 06-09 09:38:47.831 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:47.831 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 17, orientation 0 06-09 09:38:47.831 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 547.385632 06-09 09:38:47.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 547.385632 06-09 09:38:47.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 493: [WO] Rejected by settle_time and gyro finds no rotation 0 06-09 09:38:47.838 1757 1784 I WindowManager: finishDrawing of orientation change: Window{3968b5f u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity} 35ms 06-09 09:38:47.839 2363 2363 I NoBackGesture: Config changed: newConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7462 fontWeightAdjustment=0} lastReportedConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w850dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2340, 1080) mAppBounds=Rect(108, 0 - 2340, 1017) mMaxBounds=Rect(0, 0 - 2340, 1080) mDisplayRotation=ROTATION_90 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.7385 fontWeightAdjustment=0} 06-09 09:38:47.841 794 835 I BpBinder: onLastStrongRef automatically unlinking death recipients: 06-09 09:38:47.846 1757 4994 I WindowManager: Screen frozen for +80ms due to Window{3968b5f u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity} 06-09 09:38:47.860 1757 4994 W ImageReader_JNI: Unable to acquire a buffer item, very likely client tried to acquire more than maxImages buffers 06-09 09:38:47.860 5739 5739 W GoogleInputMethodService: GoogleInputMethodService.onConfigurationChanged():1582 onConfigurationChanged() : NewConfig = {1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7390 fontWeightAdjustment=0} 06-09 09:38:47.860 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onConfigurationChanged():1599 changedMask : 20000480 06-09 09:38:47.861 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in elu 06-09 09:38:47.861 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in elu 06-09 09:38:47.862 5739 19309 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214034 -> 0_resource_name_obfuscated : WaitTime = 0 ms : RunTime = 1 ms 06-09 09:38:47.863 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in dbr 06-09 09:38:47.863 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in dbr 06-09 09:38:47.863 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in ekp 06-09 09:38:47.863 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in ekp 06-09 09:38:47.864 5739 19317 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214040 -> 0_resource_name_obfuscated : WaitTime = 0 ms : RunTime = 0 ms 06-09 09:38:47.864 5739 20159 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214031 -> 0_resource_name_obfuscated : WaitTime = 0 ms : RunTime = 0 ms 06-09 09:38:47.864 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in ens 06-09 09:38:47.865 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in ens 06-09 09:38:47.866 5739 19319 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214041 -> 0_resource_name_obfuscated : WaitTime = 1 ms : RunTime = 0 ms 06-09 09:38:47.866 2363 2363 I NoBackGesture: NavbarController: newConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7462 fontWeightAdjustment=0} mTaskbarDelegate initialized=false willApplyConfigToNavbars=false navBarCount=1 06-09 09:38:47.867 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.867 5739 5739 I KeyboardModeManager: KeyboardModeManager.setInputView():514 setInputView() : supportsOneHandedMode=true 06-09 09:38:47.868 5739 5739 I NormalModeController: NormalModeController.getKeyboardBodyViewHolderPaddingBottom():138 currentPrimeKeyboardType:SOFT systemPaddingBottom:-1 06-09 09:38:47.868 5739 5739 I KeyboardModeManager: KeyboardModeManager.setInputView():506 setInputView() : entry=ifj{languageTag=en-US, variant=qwerty, hasLocalizedResources=true, conditionCacheKey=_device=phone_device_size=default_enable_adaptive_translate=false_enable_large_tablet_batch_1=false_enable_large_tablet_batch_2=false_enable_more_candidates_view_for_multilingual=false_enable_nav_redesign=true_enable_nav_redesign_for_expression=false_enable_navbar_motion=false_enable_number_row=false_enable_preemptive_decode=true_enable_secondary_symbols=false_expressions=normal_four_or_more_letter_rows=false_keyboard_mode=normal_language=en-US_orientation=landscape_physical_keyboard=nokeys_rtl_layout=false_show_secondary_digits=true_show_suggestions=true_split_with_duplicate_keys=true_variant=qwerty, imeDef.stringId=ime_english_united_states, imeDef.className=com.google.android.apps.inputmethod.libs.latin5.LatinIme, imeDef.languageTag=en-US} 06-09 09:38:47.868 1757 4994 I WindowManager: finishDrawing of orientation change: Window{2ec0fe7 u0 StatusBar} 66ms 06-09 09:38:47.871 1757 4994 I WindowManager: finishDrawing of orientation change: Window{bdac12 u0 NavigationBar0} 68ms 06-09 09:38:47.872 5739 5739 I StyledKeyboardTheme: StyledKeyboardTheme.():102 Pref: [], themeName: [silk:], darkMode: [false], cacheKey: [overlay_builtin_dynamic_color_light_base.binarypb:dynamic-light-fff7f0e7-ffe6c26c-c93f56096988643382ad32778b2b76f0] 06-09 09:38:47.872 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.872 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.873 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.873 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.873 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.initializeKeyboardTheme():1363 Apply keyboard theme: theme_border_bottom4dp_stylesheet_noshadow_pgsans_pillkey_silkpopup_materiallight_phone_400_overlay_builtin_dynamic_color_light_base.binarypb:dynamic-light-fff7f0e7-ffe6c26c-c93f56096988643382ad32778b2b76f0_port 06-09 09:38:47.874 1757 4994 I WindowManager: finishDrawing of orientation change: Window{68039c0 u0 ScreenDecorHwcOverlay} 72ms 06-09 09:38:47.877 2363 2363 I NoBackGesture: Config changed: newConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7462 fontWeightAdjustment=0} lastReportedConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7462 fontWeightAdjustment=0} 06-09 09:38:47.877 2363 2363 D CentralSurfaces: Received new disable state: enaihbcrso.qingr (unchanged) 06-09 09:38:47.880 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.881 5739 5739 I InputMethodEntryManager: InputMethodEntryManager.startLoadingInputMethodEntrySettings():741 Start loading input method entry settings: [LanguageTagVariantTuple{languageTag=en-US, variant=qwerty}] 06-09 09:38:47.883 5739 5739 I InputMethodEntryManager: InputMethodEntryManager.updateInputMethodEntrySettingsLoadingTask():828 update loading task with resetImplicitlyEnabledEntries is false 06-09 09:38:47.889 5739 5739 I NormalModeController: NormalModeController.getKeyboardBodyViewHolderPaddingBottom():138 currentPrimeKeyboardType:SOFT systemPaddingBottom:21 06-09 09:38:47.897 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.901 5739 5739 I KeyboardHeightUtil: KeyboardHeightUtil.getKeyboardHeightRatio():193 systemKeyboardHeightRatio:1.025000; userKeyboardHeightRatio:1.000000. 06-09 09:38:47.919 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1917 onStartInput(EditorInfo{inputType=0x0(NULL) imeOptions=0x0 privateImeOptions=null actionName=UNSPECIFIED actionLabel=null actionId=0 initialSelStart=-1 initialSelEnd=-1 initialCapsMode=0x0 hintText=null label=null packageName=com.android.chrome fieldId=2130772246 fieldName=null extras=null hintLocales=[]}, true) 06-09 09:38:47.919 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.shouldHideHeaderOnInitialState():1998 ShouldHideHeaderOnInitialState = false 06-09 09:38:47.919 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 1, locked = false 06-09 09:38:47.920 5739 5739 W SessionManager: SessionManager.beginSession():53 Try to begin an already begun session [INPUT_SESSION], end it first 06-09 09:38:47.921 26129 26129 W RemoteInputConnectionImpl: requestCursorAnchorInfo on inactive InputConnection 06-09 09:38:47.924 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in elu. 06-09 09:38:47.924 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in dbr. 06-09 09:38:47.924 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in ekp. 06-09 09:38:47.925 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in ens. 06-09 09:38:47.925 5739 5739 I InputMethodEntryManager: InputMethodEntryManager$5.onSuccess():847 Success load entries: [LanguageTagVariantTuple{languageTag=en-US, variant=qwerty}], resetImplicitlyEnabledEntries=false 06-09 09:38:47.931 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in elu 06-09 09:38:47.931 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in elu 06-09 09:38:47.931 5739 5788 I SP : Registering emoticon_content_description.2022081613, url: https://www.gstatic.com/android/keyboard/emoticon_content_desc/202208161305/superpacks_manifest.json, constraints: W:::, flags: bg, requested: 2022081613, current: 2022081613 06-09 09:38:47.932 5739 19270 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214034 -> 0_resource_name_obfuscated : WaitTime = 0 ms : RunTime = 1 ms 06-09 09:38:47.933 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in dbr 06-09 09:38:47.933 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in dbr 06-09 09:38:47.934 5739 19271 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214040 -> 0_resource_name_obfuscated : WaitTime = 1 ms : RunTime = 0 ms 06-09 09:38:47.934 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in ekp 06-09 09:38:47.934 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in ekp 06-09 09:38:47.934 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.maybeDestroyExistingKeyboardGroupManager():516 Destroy existing keyboard group manager in ens 06-09 09:38:47.934 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension.createKeyboardGroupManagerListenableFuture():124 Create keyboard group manager listenable future in ens 06-09 09:38:47.935 5739 19309 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214041 -> 0_resource_name_obfuscated : WaitTime = 0 ms : RunTime = 0 ms 06-09 09:38:47.935 5739 19317 I KeyboardGroupDefParser: KeyboardGroupDefParser.parseKeyboardGroupDef():88 parseKeyboardGroupDef() 2132214031 -> 0_resource_name_obfuscated : WaitTime = 1 ms : RunTime = 0 ms 06-09 09:38:47.935 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.938 5739 5739 I StyledKeyboardTheme: StyledKeyboardTheme.():102 Pref: [], themeName: [silk:], darkMode: [false], cacheKey: [overlay_builtin_dynamic_color_light_base.binarypb:dynamic-light-fff7f0e7-ffe6c26c-c93f56096988643382ad32778b2b76f0] 06-09 09:38:47.938 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.939 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.939 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.939 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:38:47.939 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.initializeKeyboardTheme():1363 Apply keyboard theme: theme_border_bottom4dp_stylesheet_noshadow_pgsans_pillkey_silkpopup_materiallight_phone_400_overlay_builtin_dynamic_color_light_base.binarypb:dynamic-light-fff7f0e7-ffe6c26c-c93f56096988643382ad32778b2b76f0_port 06-09 09:38:47.943 5739 5788 I SP : Syncing emoticon_content_description (2022081613) with slices: [7a635888cb828dfa2fc744b7b9b50f04], metadata: false 06-09 09:38:47.949 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.lambda$setDecorViewApplyWindowInsetsListener$10():1184 update screenHeightWithoutNaviBar to: 2214 06-09 09:38:47.950 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.lambda$setDecorViewApplyWindowInsetsListener$10():1190 update max height when insets changes 06-09 09:38:47.952 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.lambda$setDecorViewApplyWindowInsetsListener$10():1184 update screenHeightWithoutNaviBar to: 2340 06-09 09:38:47.952 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.lambda$setDecorViewApplyWindowInsetsListener$10():1190 update max height when insets changes 06-09 09:38:47.953 5739 5739 I DictionarySuperpacksManager: DictionarySuperpacksManager$1.onEnabledInputMethodEntriesChanged():61 onEnabledInputMethodEntriesChanged 06-09 09:38:47.954 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in elu. 06-09 09:38:47.954 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in dbr. 06-09 09:38:47.954 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in ekp. 06-09 09:38:47.954 5739 5739 I AbstractOpenableExtension: AbstractOpenableExtension$3.onSuccess():529 KeyboardGroupManager destroyed in ens. 06-09 09:38:47.978 3919 3919 W ContentCaptureService: handleSendEvents() received empty list of events 06-09 09:38:47.979 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onFinishInput():3307 06-09 09:38:47.981 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 0, locked = false 06-09 09:38:47.982 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1917 onStartInput(EditorInfo{inputType=0x0(NULL) imeOptions=0x0 privateImeOptions=null actionName=UNSPECIFIED actionLabel=null actionId=0 initialSelStart=-1 initialSelEnd=-1 initialCapsMode=0x0 hintText=null label=null packageName=com.android.chrome fieldId=-1 fieldName=null extras=null hintLocales=[]}, false) 06-09 09:38:47.982 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.shouldHideHeaderOnInitialState():1998 ShouldHideHeaderOnInitialState = false 06-09 09:38:47.982 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 1, locked = false 06-09 09:38:47.986 5739 5788 I SP : Registering content_cache.2023013013, url: https://www.gstatic.com/android/keyboard/modelpack/contentcache/202301301334/superpacks_manifest.json, constraints: W:::, flags: bg, requested: 2023013013, current: 2023013013 06-09 09:38:47.996 5739 5788 I SP : Sync for emoticon_content_description succeeded in 58 ms: no changes 06-09 09:38:47.997 5739 5788 I SP : GC for 'emoticon_content_description' (10) with ttl of 0 ms took 1 ms (0/1/0) 06-09 09:38:48.001 5739 5788 I SP : Syncing content_cache (2023013013) with slices: [53515f8b3a3ff6637f37d33dc75fd2da, 8722425f4121ffdea802b1066df73991, fa1da98da1212aad6fb9a8efaff48148], metadata: true 06-09 09:38:48.055 5739 5788 I SP : Sync for content_cache succeeded in 58 ms: no changes 06-09 09:38:48.056 5739 5788 I SP : GC for 'content_cache' (10) with ttl of 0 ms took 1 ms (0/0/1) 06-09 09:38:48.058 1549 1717 D CHRE : @ 159163.149: [ActivityPlatform] type 2, confidence 75 06-09 09:38:48.272 1383 1383 I WifiHAL : Creating message to get link statistics; iface = 48 06-09 09:38:48.322 1383 1383 I WifiHAL : In GetLinkStatsCommand::handleResponse 06-09 09:38:48.356 2889 2965 D IwlanNetworkService: onCapabilitiesChanged: 111 06-09 09:38:48.356 2889 2957 D IwlanDataService: onCapabilitiesChanged: 111 [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=15127Kbps LinkDnBandwidth>=63564Kbps TransportInfo: <SSID: , BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, IP: /172.23.161.165, Security type: 2, Supplicant state: COMPLETED, Wi-Fi standard: 5, RSSI: -58, Link speed: 526Mbps, Tx Link speed: 526Mbps, Max Supported Tx Link speed: 866Mbps, Rx Link speed: 702Mbps, Max Supported Rx Link speed: 866Mbps, Frequency: 5180MHz, Net ID: -1, Metered hint: false, score: 60, isUsable: true, CarrierMerged: false, SubscriptionId: -1, IsPrimary: 1, Trusted: true, Restricted: false, Ephemeral: false, OEM paid: false, OEM private: false, OSU AP: false, FQDN: , Provider friendly name: , Requesting package name: MLO Information: , AP MLD Address: , AP MLO Link Id: , AP MLO Affiliated links: > SignalStrength: -58 AdminUids: [1000] SSID: "VC_A" UnderlyingNetworks: Null] 06-09 09:38:48.357 2889 2957 D IwlanDataService: Network 111 connected using transport WIFI 06-09 09:38:48.357 2930 2995 D IwlanNetworkStatusTracker: onCapabilitiesChanged: 111 06-09 09:38:48.357 2930 2995 D IwlanNetworkStatusTracker: OnCapability : Wifi Available already true 06-09 09:38:48.358 3182 3312 D DeviceStateHelper: Wifi freq: 5180 06-09 09:38:48.358 2649 3500 D SHANNON_RCS: 0734 [0][PROX][TELE] onCapabilitiesChanged, Network: 111, NetworkCapabilities: [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED&NOT_VCN_MANAGED LinkUpBandwidth>=15127Kbps LinkDnBandwidth>=63564Kbps TransportInfo: <SSID: , BSSID: 02:00:00:00:00:00, MAC: 02:00:00:00:00:00, IP: /172.23.161.165, Security type: 2, Supplicant state: COMPLETED, Wi-Fi standard: 5, RSSI: -58, Link speed: 526Mbps, Tx Link speed: 526Mbps, Max Supported Tx Link speed: 866Mbps, Rx Link speed: 702Mbps, Max Supported Rx Link speed: 866Mbps, Frequency: 5180MHz, Net ID: -1, Metered hint: false, score: 60, isUsable: true, CarrierMerged: false, SubscriptionId: -1, IsPrimary: -1, Trusted: true, Restricted: false, Ephemeral: false, OEM paid: false, OEM private: false, OSU AP: false, FQDN: , Provider friendly name: , Requesting package name: MLO Information: , AP MLD Address: , AP MLO Link Id: , AP MLO Affiliated links: > SignalStrength: -58 UnderlyingNetworks: Null] (DefaultNetworkCallback%onCapabilitiesChanged:76) 06-09 09:38:48.361 2678 3508 I SHANNON_IMS: 4799 [CONN] WiFi connected [SLID:0], network: 111 [com.shannon.imsservice.conn.DefaultNetworkCallback@660009] (DefaultNetworkCallback%onCapabilitiesChanged:42) 06-09 09:38:48.375 1757 2297 D ConnectivityService: NetReassign [no changes] [c 0] [a 0] [i 3] 06-09 09:38:48.377 8403 8447 I CarrierServices: [130] gol.handleMessage: RcsEngineImpl[DUAL_REG]:[48dc85ef-ac71]>Handler: handleMessage processing message:[NOTIFY_UPTIME_IGNORE_STATE_CHANGED] with [non-null]:RcsEngineImpl reference 06-09 09:38:48.378 8403 8449 I CarrierServices: [132] fug.c: Connected state: [1], networkType: [WIFI] 06-09 09:38:48.380 5521 5882 I ChimeraSrvcProxy: NullBinder for android.net.action.RECOMMEND_NETWORKS triggering remote TransactionTooLargeException due to Service without Chimera impl 06-09 09:38:48.380 5521 5882 W .gms.persistent: Large reply transaction of 1056768 bytes, interface descriptor , code 1 06-09 09:38:48.391 8403 8447 I CarrierServices: [130] gku.f: No RCS Configuration was found in Bugle for simID: redacted-pii:sim_id[chars:19,last3:566] 06-09 09:38:49.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:49.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 5, orientation 0 06-09 09:38:49.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 4.688811 06-09 09:38:49.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 4.688811 06-09 09:38:49.832 1548 1548 D AOC : A3:MSG: window_orientation.c, 529: [WO] Rejected by swing_time. Last detected 97 ms ago. 06-09 09:38:49.968 1757 1817 I system_server: Explicit concurrent copying GC freed 503105(15MB) AllocSpace objects, 8(176KB) LOS objects, 72% free, 37MB/133MB, paused 256us,58us total 103.360ms 06-09 09:38:49.973 1757 1782 W System : A resource failed to call release. 06-09 09:38:49.973 1757 1782 W System : A resource failed to call CursorWindow.close. 06-09 09:38:49.974 1757 1782 W System : A resource failed to call HardwareBuffer.close. 06-09 09:38:49.974 1757 1782 W System : A resource failed to call HardwareBuffer.close. 06-09 09:38:49.975 1757 1782 W System : A resource failed to call HardwareBuffer.close. 06-09 09:38:50.789 1549 1717 D CHRE : @ 159165.879: [ChreWifiScanner] Requested active scan, interval: 7s, Max Age 3 s 06-09 09:38:50.789 1549 1717 D CHRE : @ 159165.879: [ChreWifiScanner] active scan # 11 started 06-09 09:38:50.789 1549 1717 I CHRE : @ 159165.879: CHRE: Enqueue TX: len=24 H#16 type=0x0 ID=19 err=0 cmd=0x4 pending=1 06-09 09:38:51.126 1476 1496 D RILClient: [OemClient]IND: (clientId = 0, msgId = 5103, dataLength = 24, channel = 0) 06-09 09:38:51.127 1388 2136 D RILClient: [OemClient]IND: (clientId = 1, msgId = 5103, dataLength = 24, channel = 0) 06-09 09:38:51.148 1476 1496 D RILClient: [OemClient]IND: (clientId = 0, msgId = 2015, dataLength = 148, channel = 0) 06-09 09:38:51.149 1388 2136 D RILClient: [OemClient]IND: (clientId = 1, msgId = 2015, dataLength = 148, channel = 0) 06-09 09:38:51.157 2930 2930 D QnsTelephonyListener_0: onBarringInfoChanged voiceBarringByFactor:false emergencyBarringFactorfalse 06-09 09:38:51.253 1549 1717 I CHRE : @ 159166.340: [AR] inconsistent: 41.176471 06-09 09:38:51.253 1549 1717 D CHRE : @ 159166.341: [ActivityPlatform] type 6, confidence 41 06-09 09:38:51.359 1383 1383 I WifiHAL : Creating message to get link statistics; iface = 48 06-09 09:38:51.424 1383 1383 I WifiHAL : In GetLinkStatsCommand::handleResponse 06-09 09:38:51.478 1757 2297 D ConnectivityService: NetReassign [no changes] [c 1] [a 0] [i 4] 06-09 09:38:51.838 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:51.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 30, orientation 0 06-09 09:38:51.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 21.954202 06-09 09:38:51.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 21.954202 06-09 09:38:51.921 1371 26128 W C2BqBuffer: last successful dequeue was 13001937 us ago, 1087 consecutive failures 06-09 09:38:52.255 1827 2111 I twoshay.grip: GRIP_CONTEXT: Context Changed: [isPortrait, isLandscapeLeft, isPortraitFlipped, isLandscapeRight]: [1, 0, 0, 0] 06-09 09:38:52.256 1827 2111 I twoshay.grip: Grip 0 ENTER 06-09 09:38:52.284 1549 1717 I CHRE : @ 159167.374: CHPP WIFI: Scan request success=1 at service 06-09 09:38:52.293 1549 1717 I CHRE : @ 159167.383: CHPP WIFI: Measuring timesync t=159167383 06-09 09:38:52.294 1549 1717 I CHRE : @ 159167.383: CHPP WIFI: Enqueue TX: len=6 H#2 type=0x0 ID=3 err=0 cmd=0x1 pending=1 06-09 09:38:52.294 1549 1717 D CHRE : @ 159167.384: [WifiPlatform] received scan: 7 APs 06-09 09:38:52.294 1549 1717 D CHRE : @ 159167.384: [ChreWifiScanner] scan received in 159108 seconds: active: 11, total: 11 06-09 09:38:52.295 1549 1717 W CHRE : @ 159167.385: CHPP WIFI: Drift=188 clipped to 100 at t=159167385 06-09 09:38:52.295 1549 1717 I CHRE : @ 159167.385: CHPP WIFI: Timesync RTT=1 correction=100 offset=-65417 t=66355 06-09 09:38:52.313 2678 2678 I SHANNON_IMS: 4802 [PROX] Received onSignalStrengthsChanged [CellSignalStrengthLte: rssi=-71 rsrp=-98 rsrq=-8 rssnr=12 cqiTableIndex=1 cqi=14 ta=2147483647 level=4 parametersUseForLevel=0] [SLID:0 APM:false] (ImsConnectivityProxyListener$ImsPhoneStateListener%onSignalStrengthsChanged:511) 06-09 09:38:52.332 1827 2111 I twoshay.grip: Grip 0 LEAVE0 06-09 09:38:52.666 27339 27339 D BoundBrokerSvc: onUnbind: Intent { act=com.google.android.gms.appset.service.START dat=chimera-action:/... cmp=com.google.android.gms/.chimera.GmsApiService } 06-09 09:38:52.941 8243 8463 W TimedProcessReaper: Memory state is: 125 06-09 09:38:53.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:53.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 26, orientation 0 06-09 09:38:53.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 0.412560 06-09 09:38:53.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 0.412560 06-09 09:38:53.839 1548 1548 D AOC : A3:MSG: window_orientation.c, 514: [WO] Rejected by flat_time. Last flat detected 0 ms ago. Tilt angle: 70 06-09 09:38:54.433 1549 1717 D CHRE : @ 159169.523: [ActivityPlatform] type 6, confidence 41 06-09 09:38:54.473 1383 1383 I WifiHAL : Creating message to get link statistics; iface = 48 06-09 09:38:54.543 1383 1383 I WifiHAL : In GetLinkStatsCommand::handleResponse 06-09 09:38:54.595 1757 2297 D ConnectivityService: NetReassign [no changes] [c 0] [a 1] [i 3] 06-09 09:38:54.773 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 4: Enabled 0, odr_index 0, period_ns 0. 06-09 09:38:54.773 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/240/15/30 WM: 12 Intr: 29. 06-09 09:38:54.773 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 622274ns. 06-09 09:38:54.773 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1375: USF: Received stop sampling request for LSM6DSV Stationary Detect. 06-09 09:38:54.774 1548 1548 D AOC : A3:ERR: usf_sensor.cc, 1835: USF: Sampling configuration 10712 not found. 06-09 09:38:54.774 1548 1548 D AOC : A3:ERR: usf_vs_helper.cc, 430: USF: Received stop sampling request error. (7) 06-09 09:38:54.774 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1368: USF: Received start sampling request for LSM6DSV Motion Detect. 06-09 09:38:54.775 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 3: Enabled 1, odr_index 1, period_ns 500000000. 06-09 09:38:54.775 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/240/15/30 WM: 12 Intr: 29. 06-09 09:38:54.775 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 530518ns. 06-09 09:38:54.779 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1368: USF: Received start sampling request for LSM6DSV Motion Detect. 06-09 09:38:54.781 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1375: USF: Received stop sampling request for LSM6DSV Stationary Detect. 06-09 09:38:54.781 1548 1548 D AOC : A3:ERR: usf_sensor.cc, 1835: USF: Sampling configuration 10713 not found. 06-09 09:38:54.921 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for LSM6DSV Gyroscope. 06-09 09:38:54.921 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 1: Enabled 1, odr_index 5, period_ns 20000000. 06-09 09:38:54.922 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 4 Intr: 36. 06-09 09:38:54.922 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 619141ns. 06-09 09:38:54.926 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for Fusion Mag. 06-09 09:38:54.926 1548 1548 D AOC : A3:MSG: fusion_mag_sensor.cc, 711: USF: FMAG: Reconfig sampling: period(new/old) = 20/10ms, latency = 500ms. 06-09 09:38:54.927 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for MMC56X3X Magnetometer 0. 06-09 09:38:54.927 1548 1548 D AOC : A3:MSG: mmc56x3x_device.cc, 409: USF: MMC56X3X1: mmc56x3x_enable_measure odr = 50. 06-09 09:38:54.928 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for MMC56X3X Magnetometer 1. 06-09 09:38:54.929 1548 1548 D AOC : A3:MSG: mmc56x3x_device.cc, 409: USF: MMC56X3X2: mmc56x3x_enable_measure odr = 50. 06-09 09:38:55.358 1549 1717 I CHRE : @ 159170.445: [ip] Peak detected: magnitude = 0.205991 hpa, duration = 159.999996 ms 06-09 09:38:55.358 1362 2021 I suez-nanoapp-clients: Barometric peak detected: magnitude = 0.205992 hPa (bucket: 5), duration = 160.000000 ms (bucket: 14). 06-09 09:38:55.358 1332 1347 D ContextHubHal: Got message from nanoapp: ID 0x476f6f676c001022 06-09 09:38:55.362 1362 2021 I suez-nanoapp-clients: Vendor atom [id = 100047] reported. 06-09 09:38:55.362 1757 2324 E ContextHubClientManager: Cannot send message to unregistered client (host endpoint ID = -28638) 06-09 09:38:55.855 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:55.856 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 23, orientation 0 06-09 09:38:55.856 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 16.401141 06-09 09:38:55.856 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 16.401141 06-09 09:38:55.856 1548 1548 D AOC : A3:MSG: window_orientation.c, 514: [WO] Rejected by flat_time. Last flat detected 0 ms ago. Tilt angle: 69 06-09 09:38:56.924 1371 26128 W C2BqBuffer: last successful dequeue was 18004423 us ago, 1506 consecutive failures 06-09 09:38:57.593 1383 1383 I WifiHAL : Creating message to get link statistics; iface = 48 06-09 09:38:57.628 1549 1717 D CHRE : @ 159172.716: [ActivityPlatform] type 6, confidence 41 06-09 09:38:57.666 1383 1383 I WifiHAL : In GetLinkStatsCommand::handleResponse 06-09 09:38:57.724 1757 2297 D ConnectivityService: NetReassign [no changes] [c 1] [a 0] [i 6] 06-09 09:38:57.910 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:57.911 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 22, orientation 0 06-09 09:38:57.911 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 32.022219 06-09 09:38:57.911 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 32.022219 06-09 09:38:57.911 1548 1548 D AOC : A3:MSG: window_orientation.c, 514: [WO] Rejected by flat_time. Last flat detected 0 ms ago. Tilt angle: 69 06-09 09:38:58.044 1548 1548 D AOC : A3:MSG: vsc_controller.cc, 537: VSC: [Significant Motion] requestSensorEvents: sensor 0x20002, period=18446744073709 la 06-09 09:38:58.044 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1368: USF: Received start sampling request for LSM6DSV Motion Detect. 06-09 09:38:58.045 1548 1548 D AOC : A3:MSG: vsc_controller.cc, 555: VSC: [Significant Motion] stopSensorEvents: sensor 0x10001 06-09 09:38:58.047 1548 1548 D AOC : A3:MSG: usf_sensor.cc, 1883: USF: Received reconfig sampling request for LSM6DSV Accelerometer. 06-09 09:38:58.049 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 734: USF: Lsm6dsvDevice: Sensor 0: Enabled 1, odr_index 5, period_ns 20000000. 06-09 09:38:58.049 1548 1548 D AOC : A3:MSG: lsm6dsv_fifo.cc, 752: USF: Lsm6dsvFifo: ODR: XL/G/T/TS: 60/60/15/7 WM: 4 Intr: 36. 06-09 09:38:58.049 1548 1548 D AOC : A3:MSG: lsm6dsv_device.cc, 643: USF: Lsm6dsvDevice: Fifo was disabled for 591919ns. 06-09 09:38:58.851 2184 2184 I native : I0000 00:00:1686271138.851592 2184 event_matcher.cc:59] Frame 58627350450000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.851 2184 2184 I native : I0000 00:00:1686271138.851922 2184 event_matcher.cc:59] Frame 58627354653000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.851 2184 2184 I native : I0000 00:00:1686271138.851979 2184 event_matcher.cc:59] Frame 58627358872000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852019 2184 event_matcher.cc:59] Frame 58627363047000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852056 2184 event_matcher.cc:59] Frame 58627367228000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852087 2184 event_matcher.cc:59] Frame 58627371488000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852117 2184 event_matcher.cc:59] Frame 58627375628000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852146 2184 event_matcher.cc:59] Frame 58627379877000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852175 2184 event_matcher.cc:59] Frame 58627384055000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852203 2184 event_matcher.cc:59] Frame 58627388230000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852232 2184 event_matcher.cc:59] Frame 58627392452000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852260 2184 event_matcher.cc:59] Frame 58627396647000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852291 2184 event_matcher.cc:59] Frame 58627400796000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852320 2184 event_matcher.cc:59] Frame 58627405036000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852348 2184 event_matcher.cc:59] Frame 58627409287000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852376 2184 event_matcher.cc:59] Frame 58627413507000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852404 2184 event_matcher.cc:59] Frame 58627417666000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 2184 2184 I native : I0000 00:00:1686271138.852432 2184 event_matcher.cc:59] Frame 58627421720000 earlier than last matched event: 58633933131000; dropping 06-09 09:38:58.852 1827 2111 I twoshay.grip: Grip 1 ENTER 06-09 09:38:58.973 2184 2203 I native : I0000 00:00:1686271138.973076 2203 tf_lite_classifier.cc:383] Event stream classified as kNone 06-09 09:38:58.983 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onFinishInput():3307 06-09 09:38:58.985 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 0, locked = false 06-09 09:38:58.986 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1917 onStartInput(EditorInfo{inputType=0x0(NULL) imeOptions=0x12000000 privateImeOptions=null actionName=UNSPECIFIED actionLabel=null actionId=0 initialSelStart=-1 initialSelEnd=-1 initialCapsMode=0x0 hintText=null label=null packageName=com.android.chrome fieldId=-1 fieldName=null extras=null hintLocales=[]}, false) 06-09 09:38:58.986 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.shouldHideHeaderOnInitialState():1998 ShouldHideHeaderOnInitialState = false 06-09 09:38:58.986 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 1, locked = false 06-09 09:38:59.024 1827 2111 I twoshay.grip: Grip 1 LEAVE0 06-09 09:38:59.654 1757 1835 D CompatibilityChangeReporter: Compat change id reported: 143937733; UID 10184; state: ENABLED 06-09 09:38:59.665 1757 2100 I ActivityTaskManager: START u0 {act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=eos.xyza7891ivx6ta2n428h7yyg49fxrhiv://epic/... flg=0x14000000 cmp=com.UniConnection.ARShouting/com.unity3d.player.UnityPlayerActivity (has extras)} from uid 10184 06-09 09:38:59.671 26192 26192 D Zygote : Forked child process 26379 06-09 09:38:59.673 1757 2100 D CompatibilityChangeReporter: Compat change id reported: 194480991; UID 10288; state: ENABLED 06-09 09:38:59.673 1757 1835 I ActivityManager: Start proc 26379:com.android.chrome:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:2/u0ai2 for {com.android.chrome/org.chromium.content.app.SandboxedProcessService0:2} 06-09 09:38:59.676 1757 2100 I ActivityTaskManager: Launching r: ActivityRecord{b431bf4 u0 com.UniConnection.ARShouting/com.unity3d.player.UnityPlayerActivity} from background: ActivityRecord{8143616 u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity} t319}. New task: false 06-09 09:38:59.677 26379 26379 E libc : SetHeapTaggingLevel: re-enabling tagging after it was disabled is not supported 06-09 09:38:59.681 1757 2100 D CompatibilityChangeReporter: Compat change id reported: 205907456; UID 10288; state: DISABLED 06-09 09:38:59.684 26379 26379 I ocessService0:2: Using CollectorTypeCC GC. 06-09 09:38:59.684 1757 2100 D CompatibilityChangeReporter: Compat change id reported: 194833441; UID 10288; state: DISABLED 06-09 09:38:59.687 1757 4997 D CompatibilityChangeReporter: Compat change id reported: 168419799; UID 10288; state: DISABLED 06-09 09:38:59.689 26379 26379 E ocessService0:2: Not starting debugger since process cannot load the jdwp agent. 06-09 09:38:59.689 1757 4997 D CoreBackPreview: Window{700360 u0 Splash Screen com.UniConnection.ARShouting}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@69538de, mPriority=0} 06-09 09:38:59.696 1757 4994 D CompatibilityChangeReporter: Compat change id reported: 168419799; UID 10184; state: DISABLED 06-09 09:38:59.696 26129 26129 I cr_BottomSheet: Setting sheet state: state: 0, content null: true 06-09 09:38:59.697 26129 26129 I cr_VideoPersist: Attempted picture-in-picture with result: 8 06-09 09:38:59.700 26379 26379 D CompatibilityChangeReporter: Compat change id reported: 171979766; UID 90002; state: ENABLED 06-09 09:38:59.706 26379 26379 I LoadedApk: No resource references to update in package com.google.android.trichromelibrary 06-09 09:38:59.707 26379 26379 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 09:38:59.707 26379 26379 D NetworkSecurityConfig: Using Network Security Config from resource 0_resource_name_obfuscated debugBuild: false 06-09 09:38:59.708 26379 26379 I cr_SplitCompatApp: Launched version=114.0.5735.57 minSdkVersion=29 isBundle=true processName=com.android.chrome:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:2 isIsolated=true 06-09 09:38:59.711 26379 26379 W SystemServiceRegistry: No service published for: uimode 06-09 09:38:59.713 26379 26379 I cr_ChildProcessService: Creating new ChildProcessService pid=26379 06-09 09:38:59.718 1757 4997 W ActivityTaskManager: Tried to set launchTime (0) < mLastActivityLaunchTime (58607055) 06-09 09:38:59.721 26379 26394 I cr_LibraryLoader: Successfully loaded native library 06-09 09:38:59.721 26379 26394 I cr_CachingUmaRecorder: Flushed 10 samples from 10 histograms. 06-09 09:38:59.740 1757 4997 I ActivityManager: Killing 26379:com.android.chrome:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:2/u0a184i-8998 (adj 0): isolated not needed 06-09 09:38:59.740 1757 1842 I libprocessgroup: Successfully killed process cgroup uid 90002 pid 26379 in 0ms 06-09 09:38:59.750 26129 26129 E cr_CompositorSurfaceMgr: surfaceDestroyed format : 4 06-09 09:38:59.752 1757 4994 W WindowManager: Failed looking up window session=Session{425fe0b 25827:u0a10288} callers=com.android.server.wm.WindowManagerService.windowForClientLocked:5976 com.android.server.wm.Session.updateRequestedVisibilities:701 android.view.IWindowSession$Stub.onTransact:1075 06-09 09:38:59.755 1757 1784 D CoreBackPreview: Window{33f29ec u0 com.UniConnection.ARShouting/com.unity3d.player.UnityPlayerActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@754404a, mPriority=0} 06-09 09:38:59.757 27339 27339 D BoundBrokerSvc: onBind: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms } 06-09 09:38:59.757 27339 27339 D BoundBrokerSvc: Loading bound service for intent: Intent { act=com.google.android.gms.measurement.START pkg=com.google.android.gms } 06-09 09:38:59.764 794 835 I BpBinder: onLastStrongRef automatically unlinking death recipients: 06-09 09:38:59.765 25827 25827 E SurfaceSyncer: Failed to find sync for id=0 06-09 09:38:59.775 1757 1814 I ActivityTaskManager: Displayed com.UniConnection.ARShouting/com.unity3d.player.UnityPlayerActivity: +107ms 06-09 09:38:59.782 25827 25827 E SurfaceSyncer: Failed to find sync for id=0 06-09 09:38:59.788 25827 26403 E Unity : Graphics device is null. 06-09 09:38:59.788 1757 4997 D CompatibilityChangeReporter: Compat change id reported: 214016041; UID 10288; state: DISABLED 06-09 09:38:59.792 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onFinishInput():3307 06-09 09:38:59.795 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 0, locked = false 06-09 09:38:59.796 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1917 onStartInput(EditorInfo{inputType=0x0(NULL) imeOptions=0x0 privateImeOptions=null actionName=UNSPECIFIED actionLabel=null actionId=0 initialSelStart=-1 initialSelEnd=-1 initialCapsMode=0x0 hintText=null label=null packageName=com.UniConnection.ARShouting fieldId=2131231034 fieldName=null extras=null hintLocales=[]}, false) 06-09 09:38:59.796 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.shouldHideHeaderOnInitialState():1998 ShouldHideHeaderOnInitialState = false 06-09 09:38:59.796 5739 5739 I GoogleInputMethodService: GoogleInputMethodService.updateDeviceLockedStatus():2137 repeatCheckTimes = 1, locked = false 06-09 09:38:59.809 26192 26192 I Zygote : Process 26379 exited cleanly (0) 06-09 09:38:59.815 1549 1717 D CHRE : @ 159174.905: [ChreWifiScanner] Requested active scan, interval: 7s, Max Age 3 s 06-09 09:38:59.815 1549 1717 D CHRE : @ 159174.905: [ChreWifiScanner] active scan # 12 started 06-09 09:38:59.815 1549 1717 I CHRE : @ 159174.905: CHRE: Enqueue TX: len=24 H#16 type=0x0 ID=20 err=0 cmd=0x4 pending=1 06-09 09:38:59.828 1757 1932 D KernelCpuUidUserSysTimeReader: Removing uids 99047-99047 06-09 09:38:59.828 1757 1932 D KernelCpuUidUserSysTimeReader: Removing uids 90001-90001 06-09 09:38:59.829 1757 1932 D KernelCpuUidUserSysTimeReader: Removing uids 90000-90000 06-09 09:38:59.839 8810 8820 W System : A resource failed to call release. 06-09 09:38:59.839 8810 8820 W System : A resource failed to call release. 06-09 09:38:59.839 8810 8820 W System : A resource failed to call release. 06-09 09:38:59.842 26405 26405 W linker64: type=1400 audit(0.0:1953): avc: denied { search } for name="tests" dev="dm-61" ino=113 scontext=u:r:untrusted_app_30:s0:c32,c257,c512,c768 tcontext=u:object_r:shell_test_data_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:38:59.842 26405 26405 W linker64: type=1400 audit(0.0:1954): avc: denied { search } for name="tests" dev="dm-61" ino=113 scontext=u:r:untrusted_app_30:s0:c32,c257,c512,c768 tcontext=u:object_r:shell_test_data_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:38:59.842 26405 26405 W linker64: type=1400 audit(0.0:1955): avc: denied { search } for name="tests" dev="dm-61" ino=113 scontext=u:r:untrusted_app_30:s0:c32,c257,c512,c768 tcontext=u:object_r:shell_test_data_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:38:59.842 26405 26405 W linker64: type=1400 audit(0.0:1956): avc: denied { search } for name="tests" dev="dm-61" ino=113 scontext=u:r:untrusted_app_30:s0:c32,c257,c512,c768 tcontext=u:object_r:shell_test_data_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:38:59.877 5521 26070 W NetworkScheduler: Error inserting flex_time=3295000 job_id=-1 period=6591000 source=16 requires_charging=0 preferred_network_type=1 target_class=com.google.android.gms.measurement.PackageMeasurementTaskService user_id=0 target_package=com.google.android.gms tag=Measurement.PackageMeasurementTaskService.UPLOAD_TASK_TAG task_type=0 required_idleness_state=0 service_kind=0 source_version=231819000 persistence_level=1 preferred_charging_state=1 required_network_type=0 runtime=1686271139876 retry_strategy={"maximum_backoff_seconds":{"3600":0},"initial_backoff_seconds":{"30":0},"retry_policy":{"0":0}} last_runtime=0 [CONTEXT service_id=218 ] 06-09 09:38:59.877 5521 26070 W NetworkScheduler: android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: pending_ops.tag, pending_ops.target_class, pending_ops.target_package, pending_ops.user_id (code 2067 SQLITE_CONSTRAINT_UNIQUE) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:961) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:790) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:89) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1868) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertOrThrow(SQLiteDatabase.java:1763) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at byui.f(:com.google.android.gms@231819044@23.18.19 (190400-536743017):59) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at bytb.n(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at bytb.u(:com.google.android.gms@231819044@23.18.19 (190400-536743017):20) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at bytb.h(:com.google.android.gms@231819044@23.18.19 (190400-536743017):3) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at byot.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):9) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at aced.c(:com.google.android.gms@231819044@23.18.19 (190400-536743017):6) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at aced.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):7) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1137) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at acjn.run(:com.google.android.gms@231819044@23.18.19 (190400-536743017):0) 06-09 09:38:59.877 5521 26070 W NetworkScheduler: at java.lang.Thread.run(Thread.java:1012) 06-09 09:38:59.929 26405 26405 E chromium: [0609/093859.929576:ERROR:elf_dynamic_array_reader.h(64)] tag not found 06-09 09:38:59.930 1548 1548 D AOC : A3:MSG: window_orientation.c, 697: [WO] Proposed rotation: 0, flat angle threshold: 65 06-09 09:38:59.930 1548 1548 D AOC : A3:MSG: window_orientation.c, 1105: [WO] orientation angle 15, orientation 0 06-09 09:38:59.930 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 9.598208 06-09 09:38:59.930 1548 1548 D AOC : A3:MSG: window_orientation.c, 430: [WO] Gyro angle integrated: 9.598208 06-09 09:38:59.930 1548 1548 D AOC : A3:MSG: window_orientation.c, 514: [WO] Rejected by flat_time. Last flat detected 0 ms ago. Tilt angle: 68 06-09 09:38:59.931 26405 26405 E chromium: [0609/093859.931137:ERROR:process_memory_range.cc(75)] read out of range 06-09 09:38:59.955 26405 26405 W chromium: [0609/093859.955268:WARNING:thread_snapshot_linux.cc(112)] Unknown scheduling policy 1073741825 06-09 09:38:59.983 25827 26403 F libc : Fatal signal 5 (SIGTRAP), code -6 (SI_TKILL) in tid 26403 (UnityMain), pid 25827 (tion.ARShouting) 06-09 09:39:00.004 3919 4494 I AiAiEcho: Predicting[7]: { Feature:1, creation:2023-06-09T00:33:07.495Z, expiry:2023-06-09T01:00:00Z, isExpired: false}, { Feature:1, creation:2023-06-09T01:00:00Z, expiry:2023-06-09T02:00:00Z, isExpired: true}, { Feature:1, creation:2023-06-09T02:00:00Z, expiry:2023-06-09T03:00:00Z, isExpired: true}, { Feature:1, creation:2023-06-09T03:00:00Z, expiry:2023-06-09T04:00:00Z, isExpired: true}, { Feature:1, creation:2023-06-09T04:00:00Z, expiry:2023-06-09T05:00:00Z, isExpired: true}, { Feature:1, creation:2023-06-09T05:00:00Z, expiry:2023-06-09T06:00:00Z, isExpired: true}, { Feature:1, creation:2023-06-09T06:00:00Z, expiry:2023-06-09T06:33:07.495Z, isExpired: true} [CONTEXT sampling_count=5 ] 06-09 09:39:00.004 3919 4494 I AiAiEcho: EchoTargets: Feature:1 06-09 09:39:00.004 3919 4494 I AiAiEcho: Filtered by AiAi flag check: 06-09 09:39:00.004 3919 4494 I AiAiEcho: [CONTEXT ratelimit_period="10 SECONDS" ] 06-09 09:39:00.005 3919 4494 I AiAiEcho: Ranked targets strategy: WEIGHTED, count: 1, ranking metadata: { cardId: WEATHER-569377242, card type: 1, update time: 2023-06-09T00:33:07.495Z, expiration time: 2023-06-09T01:00:00Z, ranking metadata: RankingMetaData(urgency=0.988, priority=0.3, recency=1.0, rankScore=0.2964, importantTimePoints=# nor@7bca4) } [CONTEXT ratelimit_period="10 SECONDS" ] 06-09 09:39:00.010 3919 4494 I AiAiEcho: #postPredictionTargets: Sending updates to UISurface lockscreen with targets# 1 (types=[1]) 06-09 09:39:00.016 2363 2363 D SsBaseTemplateCard: No text view can be set up 06-09 09:39:00.016 2363 2363 D SsBaseTemplateCard: Passed-in item info is null 06-09 09:39:00.016 2363 2363 I SsBaseTemplateCard: Secondary card pane is null 06-09 09:39:00.053 1757 4994 D CoreBackPreview: Window{700360 u0 Splash Screen com.UniConnection.ARShouting EXITING}: Setting back callback null 06-09 09:39:00.054 1757 4997 W InputManager-JNI: Input channel object '700360 Splash Screen com.UniConnection.ARShouting (client)' was disposed without first being removed with the input manager! 06-09 09:39:00.077 26411 26411 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstoneProto 06-09 09:39:00.078 904 904 I tombstoned: received crash request for pid 26403 06-09 09:39:00.079 26411 26411 I crash_dump64: performing dump of process 25827 (target tid = 26403) 06-09 09:39:00.206 26411 26411 W crash_dump64: type=1400 audit(0.0:1957): avc: denied { search } for name="0" dev="tmpfs" ino=13 scontext=u:r:crash_dump:s0:c32,c257,c512,c768 tcontext=u:object_r:mnt_user_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:39:00.206 26411 26411 W crash_dump64: type=1400 audit(0.0:1958): avc: denied { search } for name="0" dev="tmpfs" ino=13 scontext=u:r:crash_dump:s0:c32,c257,c512,c768 tcontext=u:object_r:mnt_user_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:39:00.229 1757 1846 E system_server: updateValue is called with a value {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, which is lower than the previous value {910, 645, 367, 418, 683, 1481, 216, 110, 222, 115, 4105, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 11, 0, 0, 10, 266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} 06-09 09:39:00.229 1757 1846 E system_server: updateValue is called with a value {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, which is lower than the previous value {232, 384, 677, 1086, 880, 1456, 428, 753, 372, 208, 3286, 2043, 1233, 504, 362, 360, 280, 332, 221, 576, 268, 145, 60, 33, 34, 632, 2046, 917, 316, 253, 317, 320, 199, 113, 84, 144, 143, 79, 168, 52, 123, 41, 93, 1836} 06-09 09:39:00.230 1757 4994 D CoreBackPreview: Window{3968b5f u0 com.android.chrome/org.chromium.chrome.browser.ChromeTabbedActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@f3fdb4d, mPriority=-1} 06-09 09:39:00.239 1757 1817 I ActivityTaskManager: Config changes=20000480 {1.0 440mcc10mnc [en_US] ldltr sw411dp w850dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2340, 1080) mAppBounds=Rect(108, 0 - 2340, 1017) mMaxBounds=Rect(0, 0 - 2340, 1080) mDisplayRotation=ROTATION_90 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.7469 fontWeightAdjustment=0} 06-09 09:39:00.226 26411 26411 W crash_dump64: type=1400 audit(0.0:1959): avc: denied { search } for name="0" dev="tmpfs" ino=13 scontext=u:r:crash_dump:s0:c32,c257,c512,c768 tcontext=u:object_r:mnt_user_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:39:00.226 26411 26411 W crash_dump64: type=1400 audit(0.0:1960): avc: denied { search } for name="0" dev="tmpfs" ino=13 scontext=u:r:crash_dump:s0:c32,c257,c512,c768 tcontext=u:object_r:mnt_user_file:s0 tclass=dir permissive=0 app=com.UniConnection.ARShouting 06-09 09:39:00.257 1757 1817 I WindowManager: Override config changes=20000480 {1.0 440mcc10mnc [en_US] ldltr sw411dp w850dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2340, 1080) mAppBounds=Rect(108, 0 - 2340, 1017) mMaxBounds=Rect(0, 0 - 2340, 1080) mDisplayRotation=ROTATION_90 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.7469 fontWeightAdjustment=0} for displayId=0 06-09 09:39:00.262 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 174042980; UID 10184; state: DISABLED 06-09 09:39:00.262 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 184838306; UID 10184; state: DISABLED 06-09 09:39:00.262 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 185004937; UID 10184; state: DISABLED 06-09 09:39:00.262 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 181136395; UID 10184; state: DISABLED 06-09 09:39:00.262 1757 1817 D CompatibilityChangeReporter: Compat change id reported: 174042936; UID 10184; state: DISABLED 06-09 09:39:00.265 1757 1817 I InputManager-JNI: Viewport [0] to add: local:4619827677550801152, isActive: true 06-09 09:39:00.266 1757 2179 I InputReader: Reconfiguring input devices, changes=DISPLAY_INFO | 06-09 09:39:00.269 1315 1346 D audio_hw: adev_set_parameters: enter: rotation=90 06-09 09:39:00.269 1315 1346 D audio_hw_35l41: update rotation 90, enabled 0 06-09 09:39:00.271 1827 2110 E TwoshayTouchContextService: Got new packet! ContextPacket{orientation: LANDSCAPE_LEFT} 06-09 09:39:00.278 2363 2402 V WindowManagerShell: Display changed: 0 06-09 09:39:00.287 5739 5739 I DeviceModeUtil: DeviceModeUtil.getDeviceMode():133 Get device mode phone by ui mode:1 and smallestScreenWidthDp:411 06-09 09:39:00.288 26411 26411 F DEBUG : 06-09 09:39:00.288 26411 26411 F DEBUG : Build fingerprint: 'google/cheetah/cheetah:13/TQ2A.230505.002/9891397:user/release-keys' 06-09 09:39:00.288 26411 26411 F DEBUG : Revision: 'MP1.0' 06-09 09:39:00.288 26411 26411 F DEBUG : ABI: 'arm64' 06-09 09:39:00.288 26411 26411 F DEBUG : Timestamp: 2023-06-09 09:39:00.086252402+0900 06-09 09:39:00.288 26411 26411 F DEBUG : Process uptime: 29s 06-09 09:39:00.288 26411 26411 F DEBUG : Cmdline: com.UniConnection.ARShouting 06-09 09:39:00.288 26411 26411 F DEBUG : pid: 25827, tid: 26403, name: UnityMain >>> com.UniConnection.ARShouting <<< 06-09 09:39:00.288 26411 26411 F DEBUG : uid: 10288 06-09 09:39:00.288 26411 26411 F DEBUG : tagged_addr_ctrl: 0000000000000001 (PR_TAGGED_ADDR_ENABLE) 06-09 09:39:00.288 26411 26411 F DEBUG : signal 5 (SIGTRAP), code -6 (SI_TKILL), fault addr -------- 06-09 09:39:00.288 26411 26411 F DEBUG : x0 0000000000000000 x1 0000000000006723 x2 0000000000000005 x3 0000000001167192 06-09 09:39:00.288 26411 26411 F DEBUG : x4 0000000000000010 x5 0000000000000010 x6 0000000000000010 x7 7f7f7f7f7f7f7f7f 06-09 09:39:00.288 26411 26411 F DEBUG : x8 0000000000000083 x9 37477ae6457e9356 x10 0000000000000002 x11 fffffffffffffffd 06-09 09:39:00.288 26411 26411 F DEBUG : x12 00000074709b0840 x13 000000000000001a x14 00000074709b08f0 x15 0000038ece4c56bb 06-09 09:39:00.288 26411 26411 F DEBUG : x16 00000077a7731378 x17 00000077a770c110 x18 000000745cb4e000 x19 00000074709b2170 06-09 09:39:00.288 26411 26411 F DEBUG : x20 0000000000000000 x21 00000074709b2240 x22 00000074709b3000 x23 000000747b7ab000 06-09 09:39:00.288 26411 26411 F DEBUG : x24 000000747acff344 x25 00000074709b2520 x26 00000074709b2528 x27 00000074709b2520 06-09 09:39:00.288 26411 26411 F DEBUG : x28 00000074709b2420 x29 00000074709b2420 06-09 09:39:00.288 26411 26411 F DEBUG : lr 000000747acff088 sp 00000074709b20b0 pc 00000077a770c118 pst 0000000000001000 06-09 09:39:00.288 26411 26411 F DEBUG : backtrace: 06-09 09:39:00.288 26411 26411 F DEBUG : #00 pc 00000000000ac118 /apex/com.android.runtime/lib64/bionic/libc.so (tgkill+8) (BuildId: dc4001c2ef2dfc23467040797a96840c) 06-09 09:39:00.288 26411 26411 F DEBUG : #01 pc 0000000000867084 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #02 pc 0000000000867600 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #03 pc 000000000074c700 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #04 pc 00000000003b9580 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #05 pc 00000000003b99a0 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #06 pc 00000000003bbcdc /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/lib/arm64/libunity.so (BuildId: ea6de67140b30a0e51918c4364b33cd747884a1f) 06-09 09:39:00.288 26411 26411 F DEBUG : #07 pc 0000000000461554 /apex/com.android.art/lib64/libart.so (art_quick_generic_jni_trampoline+148) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #08 pc 000000000020a2b0 /apex/com.android.art/lib64/libart.so (nterp_helper+4016) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #09 pc 0000000000a5c0e0 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer.access$000+0) 06-09 09:39:00.288 26411 26411 F DEBUG : #10 pc 0000000000209334 /apex/com.android.art/lib64/libart.so (nterp_helper+52) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #11 pc 0000000000a5aa32 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e$1.a+38) 06-09 09:39:00.288 26411 26411 F DEBUG : #12 pc 000000000020a254 /apex/com.android.art/lib64/libart.so (nterp_helper+3924) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #13 pc 0000000000a5a8fe /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e$1.handleMessage+318) 06-09 09:39:00.288 26411 26411 F DEBUG : #14 pc 0000000000a21604 /data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat (android.os.Handler.dispatchMessage+148) 06-09 09:39:00.288 26411 26411 F DEBUG : #15 pc 0000000000a24f08 /data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat (android.os.Looper.loopOnce+1032) 06-09 09:39:00.288 26411 26411 F DEBUG : #16 pc 0000000000a249f4 /data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat (android.os.Looper.loop+580) 06-09 09:39:00.288 26411 26411 F DEBUG : #17 pc 0000000000209398 /apex/com.android.art/lib64/libart.so (nterp_helper+152) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #18 pc 0000000000a5ac78 /data/app/~~tXa0hSmZ8XqDqwjY3sUlwA==/com.UniConnection.ARShouting-9qcLROQ_YsqK1U0wORlC3Q==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e.run+40) 06-09 09:39:00.288 26411 26411 F DEBUG : #19 pc 0000000000457b6c /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+556) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #20 pc 0000000000484e54 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread, unsigned int, unsigned int, art::JValue, char const)+156) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.288 26411 26411 F DEBUG : #21 pc 0000000000484b20 /apex/com.android.art/lib64/libart.so (art::JValue art::InvokeVirtualOrInterfaceWithJValues<art::ArtMethod>(art::ScopedObjectAccessAlreadyRunnable const&, _jobject, art::ArtMethod, jvalue const)+400) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.289 26411 26411 F DEBUG : #22 pc 00000000005ce3a0 /apex/com.android.art/lib64/libart.so (art::Thread::CreateCallback(void)+1684) (BuildId: 12e00d030bcfeb51f978c01791e0cd24) 06-09 09:39:00.289 26411 26411 F DEBUG : #23 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c) 06-09 09:39:00.289 26411 26411 F DEBUG : #24 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c) 06-09 09:39:00.298 2363 2363 I NoBackGesture: Config changed: newConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w850dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2340, 1080) mAppBounds=Rect(108, 0 - 2340, 1017) mMaxBounds=Rect(0, 0 - 2340, 1080) mDisplayRotation=ROTATION_90 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.7541 fontWeightAdjustment=0} lastReportedConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w411dp h826dp 420dpi nrml long hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2340) mAppBounds=Rect(0, 108 - 1080, 2277) mMaxBounds=Rect(0, 0 - 1080, 2340) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0} s.7462 fontWeightAdjustment=0} 06-09 09:39:00.306 2363 2363 I NoBackGesture: NavbarController: newConfig={1.0 440mcc10mnc [en_US] ldltr sw411dp w850dp h387dp 420dpi nrml long hdr widecg land finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 2340, 1080) mAppBounds=Rect(108, 0 - 2340, 1017) mMaxBounds=Rect(0, 0 - 2340, 1080) mDisplayRotation=ROTATION_90 mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_90} s.7541 fontWeightAdjustment=0} mTaskbarDelegate initialized=false willApplyConfigToNavbars=false navBarCount=1

`

tamuatamu commented 1 year ago

And ChatGPT4 say this

This log output seems to indicate a problem with the application com.UniConnection.ARShouting. The application appears to have crashed, triggering a "Fatal signal 5 (SIGTRAP)" error. This error typically indicates an illegal instruction was executed, often as a result of a bug in the application. The bug could be a programming error or a problem in a third-party library the application is using.

The log specifically shows that the fault occurred within the libunity.so library, which is part of the Unity game engine. This could suggest a problem in the Unity part of the application, such as a memory corruption, a thread-related issue, or something else.

To find the root cause of the issue, you might want to:

Check the Unity part of your code to see if there's any issue there. Debug the Unity code if possible. Look for updates or bug fixes for the Unity engine. If this application is from a third-party, consider reaching out to the developer with this log file for further assistance. Remember that understanding crash logs often involves some amount of educated guessing unless symbolicated (i.e., replaced with human-readable function names and line numbers), as there are many potential causes for any given crash.

I hope it will help you

tamuatamu commented 1 year ago

I tried newest version of your plugin. But still seems show same error.

06-11 21:27:55.087 2960 338 W NetworkScheduler: android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: pending_ops.tag, pending_ops.target_class, pending_ops.target_package, pending_ops.user_id (code 2067 SQLITE_CONSTRAINT_UNIQUE) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:938) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:790) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:88) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1701) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at android.database.sqlite.SQLiteDatabase.insertOrThrow(SQLiteDatabase.java:1596) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at bodw.f(:com.google.android.gms@231819037@23.18.19 (150400-536743017):59) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at bocq.n(:com.google.android.gms@231819037@23.18.19 (150400-536743017):3) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at bocq.u(:com.google.android.gms@231819037@23.18.19 (150400-536743017):20) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at bocq.h(:com.google.android.gms@231819037@23.18.19 (150400-536743017):3) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at bnyi.run(:com.google.android.gms@231819037@23.18.19 (150400-536743017):9) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at abvg.c(:com.google.android.gms@231819037@23.18.19 (150400-536743017):6) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at abvg.run(:com.google.android.gms@231819037@23.18.19 (150400-536743017):7) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at acar.run(:com.google.android.gms@231819037@23.18.19 (150400-536743017):0) 06-11 21:27:55.087 2960 338 W NetworkScheduler: at java.lang.Thread.run(Thread.java:923) 06-11 21:27:55.158 4277 4277 W linker : Warning: "/data/app/~~Pb3rpUMX1ybm7hckUEyM3g==/com.google.android.webview-UzLLLTzzhakb18bANhnHVw==/base.apk!/lib/arm64-v8a/libmonochrome.so" unused DT entry: unknown processor-specific (type 0x70000001 arg 0x0) (ignoring) 06-11 21:27:55.179 564 564 I lowmemorykiller: Kill 'jp.co.sharp.android.LockWeatherWidget' (4280), uid 10158, oom_adj 800 to free 70032kB 06-11 21:27:55.180 564 564 I lowmemorykiller: Reclaimed 70032kB at oom_adj 707 06-11 21:27:55.216 740 740 I Zygote : Process 4280 exited due to signal 9 (Killed) 06-11 21:27:55.217 1334 2193 I ActivityManager: Process jp.co.sharp.android.LockWeatherWidget (pid 4280) has died: svcb SVC 06-11 21:27:55.218 1334 1682 I libprocessgroup: Successfully killed process cgroup uid 10158 pid 4280 in 0ms 06-11 21:27:55.219 3955 3984 I SP : Registering content_cache.2023013013, url: https://www.gstatic.com/android/keyboard/modelpack/contentcache/202301301334/superpacks_manifest.json, constraints: W:::*, flags: bg, requested: 2023013013, current: 2023013013 06-11 21:27:55.220 564 564 I lowmemorykiller: Kill 'com.qualcomm.telephony' (3788), uid 10245, oom_adj 800 to free 28572kB 06-11 21:27:55.220 564 564 I lowmemorykiller: Reclaimed 28572kB at oom_adj 707 06-11 21:27:55.221 1334 2193 W ActivityManager: Scheduling restart of crashed service jp.co.sharp.android.LockWeatherWidget/.ForecastService in 202828ms for start-requested 06-11 21:27:55.241 30379 30379 I Finsky : [2] tjp.onTrimMemory(1): Memory trim requested to level 10 06-11 21:27:55.254 4103 4103 I AiAi : onTrimMemory() with level 10 06-11 21:27:55.256 3955 3984 I SP : Sync for emoticon_content_description succeeded in 199 ms: no changes 06-11 21:27:55.258 740 740 I Zygote : Process 3788 exited due to signal 9 (Killed) 06-11 21:27:55.260 3955 3984 I SP : Syncing content_cache (2023013013) with slices: [53515f8b3a3ff6637f37d33dc75fd2da, 8722425f4121ffdea802b1066df73991, fa1da98da1212aad6fb9a8efaff48148], metadata: true 06-11 21:27:55.260 1334 1682 I libprocessgroup: Successfully killed process cgroup uid 10245 pid 3788 in 0ms 06-11 21:27:55.261 1334 4254 I ActivityManager: Process com.qualcomm.telephony (pid 3788) has died: svc SVC 06-11 21:27:55.262 3955 3984 I SP : GC for 'emoticon_content_description' (10) with ttl of 0 ms took 0 ms (0/0/0) 06-11 21:27:55.263 1334 4254 W ActivityManager: Scheduling restart of crashed service com.qualcomm.atfwd/.AtFwdService in 83968ms for start-requested 06-11 21:27:55.265 3955 3955 I AppBase : AppBase.onTrimMemory():449 onTrimMemory(): 10 06-11 21:27:55.266 3955 3955 I GoogleInputMethodService: GoogleInputMethodService.onTrimMemory():4540 onTrimMemory(): 10 06-11 21:27:55.315 3955 3984 I SP : Sync for content_cache succeeded in 59 ms: no changes 06-11 21:27:55.316 3955 3984 I SP : GC for 'content_cache' (10) with ttl of 0 ms took 1 ms (0/1/0) 06-11 21:27:55.562 4277 4277 E chromium: [0611/212755.557329:ERROR:elf_dynamic_array_reader.h(64)] tag not found 06-11 21:27:55.591 4277 4277 E chromium: [0611/212755.591729:ERROR:process_memory_range.cc(75)] read out of range 06-11 21:27:55.666 4277 4277 W chromium: [0611/212755.666146:WARNING:thread_snapshot_linux.cc(112)] Unknown scheduling policy 1073741825 06-11 21:27:55.707 1383 1383 V directcharged: ControllerService::onHealthInfoChangedHandler(HealthInfo) 06-11 21:27:55.715 2586 2586 D DeviceStatisticsService: chargerType=2 batteryLevel=15 totalBatteryCapacity=3096800 06-11 21:27:55.735 949 949 V vendor.sharp.hardware.intelligentcharge.directcharge@1.0-service: DirectCharge::getStatus() -> INACTIVE 06-11 21:27:55.752 1087 4226 F libc : Fatal signal 5 (SIGTRAP), code -6 (SI_TKILL) in tid 4226 (UnityMain), pid 1087 (tion.ARShouting) 06-11 21:27:55.844 4332 4332 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstone 06-11 21:27:55.851 725 725 I tombstoned: received crash request for pid 4226 06-11 21:27:55.853 4332 4332 I crash_dump64: performing dump of process 1087 (target tid = 4226) 06-11 21:27:55.859 4332 4332 F DEBUG : 06-11 21:27:55.859 4332 4332 F DEBUG : Build fingerprint: 'RAKUTEN/SH-RM19/Chara:11/S924B/01.00.00:user/release-keys' 06-11 21:27:55.859 4332 4332 F DEBUG : Revision: '0' 06-11 21:27:55.859 4332 4332 F DEBUG : ABI: 'arm64' 06-11 21:27:55.859 4332 4332 F DEBUG : Timestamp: 2023-06-11 21:27:55+0900 06-11 21:27:55.859 4332 4332 F DEBUG : pid: 1087, tid: 4226, name: UnityMain >>> com.UniConnection.ARShouting <<< 06-11 21:27:55.859 4332 4332 F DEBUG : uid: 10500 06-11 21:27:55.859 4332 4332 F DEBUG : signal 5 (SIGTRAP), code -6 (SI_TKILL), fault addr -------- 06-11 21:27:55.859 4332 4332 F DEBUG : x0 0000000000000000 x1 0000000000001082 x2 0000000000000005 x3 0000000000008000 06-11 21:27:55.859 4332 4332 F DEBUG : x4 53736d647543ff6f x5 53736d647543ff6f x6 53736d647543ff6f x7 7f7f7f7f7f7f7f7f 06-11 21:27:55.859 4332 4332 F DEBUG : x8 0000000000000083 x9 9677bf021e0d6363 x10 0000000000000001 x11 0000000000000000 06-11 21:27:55.859 4332 4332 F DEBUG : x12 000000770f1e8a70 x13 000000000000001a x14 0010c59bd60625ef x15 0000000034155555 06-11 21:27:55.859 4332 4332 F DEBUG : x16 0000007a7cf7b1d8 x17 0000007a7cf5cdd0 x18 0000007701cd8000 x19 000000770f1ea400 06-11 21:27:55.859 4332 4332 F DEBUG : x20 0000000000000000 x21 000000770f1ea4d0 x22 000000770f1ec000 x23 000000770ab9a000 06-11 21:27:55.859 4332 4332 F DEBUG : x24 000000770a0f3c30 x25 000000770f1ec000 x26 0000000000000021 x27 0000000000000002 06-11 21:27:55.859 4332 4332 F DEBUG : x28 0000000000000000 x29 000000770f1ea770 06-11 21:27:55.859 4332 4332 F DEBUG : lr 000000770a0f3974 sp 000000770f1ea340 pc 0000007a7cf5cdd8 pst 0000000000001000 06-11 21:27:56.032 31412 31412 D BaseModuleMessageHandler: GAMING_MSG_CHANGE_FOREGROUND: start 06-11 21:27:56.033 31412 31412 D BaseModuleMessageHandler: GAMING_MSG_CHANGE_FOREGROUND: end 06-11 21:27:56.162 4332 4332 F DEBUG : backtrace: 06-11 21:27:56.162 4332 4332 F DEBUG : #00 pc 000000000009add8 /apex/com.android.runtime/lib64/bionic/libc.so (tgkill+8) (BuildId: 5cf444ecfa9d1d87d12959a470ba5246) 06-11 21:27:56.162 4332 4332 F DEBUG : #01 pc 0000000000867970 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #02 pc 0000000000867eec /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #03 pc 000000000074bfec /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #04 pc 00000000003b98dc /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #05 pc 00000000003b9cfc /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #06 pc 00000000003bc038 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/lib/arm64/libunity.so (BuildId: 8160396f389c91d7e2a1c43c385c14c4b7b6d671) 06-11 21:27:56.162 4332 4332 F DEBUG : #07 pc 0000000000056914 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/oat/arm64/base.odex (art_jni_trampoline+132) 06-11 21:27:56.162 4332 4332 F DEBUG : #08 pc 0000000000133564 /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #09 pc 00000000001a8a78 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread, unsigned int, unsigned int, art::JValue, char const)+200) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #10 pc 000000000031830c /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread, art::ArtMethod, art::ShadowFrame, unsigned short, art::JValue)+376) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #11 pc 000000000030e638 /apex/com.android.art/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod, art::Thread, art::ShadowFrame&, art::Instruction const, unsigned short, art::JValue)+996) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #12 pc 000000000067eb4c /apex/com.android.art/lib64/libart.so (MterpInvokeDirect+576) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #13 pc 000000000012d914 /apex/com.android.art/lib64/libart.so (mterp_op_invoke_direct+20) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #14 pc 0000000000ae3658 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer.access$000) 06-11 21:27:56.162 4332 4332 F DEBUG : #15 pc 000000000067f6cc /apex/com.android.art/lib64/libart.so (MterpInvokeStatic+1224) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #16 pc 000000000012d994 /apex/com.android.art/lib64/libart.so (mterp_op_invoke_static+20) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #17 pc 0000000000ae1faa /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e$1.a+38) 06-11 21:27:56.162 4332 4332 F DEBUG : #18 pc 000000000067edec /apex/com.android.art/lib64/libart.so (MterpInvokeDirect+1248) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #19 pc 000000000012d914 /apex/com.android.art/lib64/libart.so (mterp_op_invoke_direct+20) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #20 pc 0000000000ae1e76 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e$1.handleMessage+318) 06-11 21:27:56.162 4332 4332 F DEBUG : #21 pc 0000000000305c34 /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.11487796752256266877)+268) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #22 pc 000000000066b1d8 /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #23 pc 000000000013cff8 /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #24 pc 000000000064ca38 /system/framework/arm64/boot-framework.oat (android.os.Handler.dispatchMessage+136) (BuildId: 0c16bee66b51845f6f99be0ce8298b3f2415d685) 06-11 21:27:56.162 4332 4332 F DEBUG : #25 pc 000000000064ff5c /system/framework/arm64/boot-framework.oat (android.os.Looper.loop+1516) (BuildId: 0c16bee66b51845f6f99be0ce8298b3f2415d685) 06-11 21:27:56.162 4332 4332 F DEBUG : #26 pc 00000000001337e8 /apex/com.android.art/lib64/libart.so (art_quick_invoke_static_stub+568) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #27 pc 00000000001a8a94 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread, unsigned int, unsigned int, art::JValue, char const)+228) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #28 pc 000000000031830c /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread, art::ArtMethod, art::ShadowFrame, unsigned short, art::JValue)+376) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #29 pc 000000000030e638 /apex/com.android.art/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod, art::Thread, art::ShadowFrame&, art::Instruction const, unsigned short, art::JValue)+996) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #30 pc 000000000067f428 /apex/com.android.art/lib64/libart.so (MterpInvokeStatic+548) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #31 pc 000000000012d994 /apex/com.android.art/lib64/libart.so (mterp_op_invoke_static+20) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #32 pc 0000000000ae21f0 /data/app/~~7g3j5L3X7LGSbTP8Fup8nQ==/com.UniConnection.ARShouting-2Ct6B2p4-eT-w4_yu9uymw==/oat/arm64/base.vdex (com.unity3d.player.UnityPlayer$e.run+40) 06-11 21:27:56.162 4332 4332 F DEBUG : #33 pc 0000000000305c34 /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.11487796752256266877)+268) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #34 pc 000000000066b1d8 /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #35 pc 000000000013cff8 /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #36 pc 0000000000133564 /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #37 pc 00000000001a8a78 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread, unsigned int, unsigned int, art::JValue, char const)+200) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #38 pc 0000000000554c48 /apex/com.android.art/lib64/libart.so (art::JValue art::InvokeVirtualOrInterfaceWithJValues<art::ArtMethod>(art::ScopedObjectAccessAlreadyRunnable const&, _jobject, art::ArtMethod, jvalue const)+460) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #39 pc 00000000005a3fe4 /apex/com.android.art/lib64/libart.so (art::Thread::CreateCallback(void)+1308) (BuildId: beffb9d89cb54deeb47538c8f05338fb) 06-11 21:27:56.162 4332 4332 F DEBUG : #40 pc 00000000000b0048 /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void)+64) (BuildId: 5cf444ecfa9d1d87d12959a470ba5246) 06-11 21:27:56.162 4332 4332 F DEBUG : #41 pc 00000000000503c8 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 5cf444ecfa9d1d87d12959a470ba5246)

arthur740212 commented 1 year ago

Were you able to clear anything related to this plugin on the android device, and rebuild a fresh project with the package?

tamuatamu commented 1 year ago

Thank you finary, I can login from Android.

Step1. Delete previous version of eos-plugin and Samples folder

Step2. Delete all files in Library.

Step3. install eos-plugin2.3.1

Step4. change res/value.xml in PlatformSpecificAssets\EOS\Android[static or dynamic]-stdc++\aar