Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

🐛App crashed after scanning a qrcode #2189

Closed
3 of 5 tasks
sunnystarh opened this issue Nov 21, 2023 · 71 comments · May be fixed by #2213
Closed
3 of 5 tasks

🐛App crashed after scanning a qrcode #2189

sunnystarh opened this issue Nov 21, 2023 · 71 comments · May be fixed by #2213
Labels
🐛 bug Something isn't working

Comments

@sunnystarh
Copy link

What's happening?

I have a crash after scanning the QR code. I haven't found the reason yet. I have released the relevant code and logs. I hope someone can answer it.

Reproduceable Code

const onAuth = async () => {
    const grantedStatus = await Camera.requestCameraPermission();
    if (grantedStatus === 'granted') {
      setHasCameraPermit(true);
    } else {
      setHasCameraPermit(false);
    }
  };
  useEffect(() => {
    onAuth();
  }, []);

  const codeScanner = useCodeScanner({
    codeTypes: ['qr'],
    onCodeScanned: codeData => {
      if (codeData[0].value) {
        verificationCodeData.current = codeData[0].value;
        if (source === 'fromScanIcon') {
          scanCodeFromScanIcon();
        } else if (source === 'fromBindButton') {
          scanCodeFromBindButton();
        }
      }
    },
  });
       
      {device != null && HasCameraPermit (
        <Camera
          photo={false}
          video={false}
          isActive={isFocused}
          device={device}
          codeScanner={codeScanner}
          style={StyleSheet.absoluteFill}
          torch={TorchMode}
        />
      )}

Relevant log output

--------- beginning of crash
2023-11-21 11:34:14.044 18948-22275 libc                    com.scan                          A  Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x77c20bc0f7 in tid 22275 (pool-10-thread-), pid 18948 (com.scan)
2023-11-21 11:34:14.078 18948-22278 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.086 18948-22368 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.117 18948-22368 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.185 18948-18961 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.189 18948-22278 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.216 18948-22278 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
---------------------------- PROCESS STARTED (24847) for package com.scan ----------------------------
2023-11-21 11:34:14.249 18948-22278 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.284 18948-22278 BufferQueueProducer     com.scan                          E  [ImageReader-1280x720f23m2-18948-18](id:4a040000001e,api:4,p:1554,c:18948) queueBuffer: BufferQueue has been abandoned
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A  Cmdline: com.scan
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A  pid: 18948, tid: 22275, name: pool-10-thread-  >>> com.scan <<<
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #00 pc 00000000000ed660  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #01 pc 00000000000d03c8  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #02 pc 00000000000ca240  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #03 pc 00000000000c9f64  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #04 pc 00000000000ca4f0  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #05 pc 00000000000c8aa4  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #06 pc 00000000000c8b44  /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/lib/arm64/libbarhopper_v3.so (Java_com_google_android_libraries_barhopper_BarhopperV3_recognizeBufferNative+84) (BuildId: cf64ac3d5cfd71b04d3bc4112d678e48)
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #14 pc 00000000001e890c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #20 pc 0000000000295758  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #26 pc 000000000029585a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #32 pc 00000000001ac93c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #38 pc 00000000001ac12a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #47 pc 0000000000187c8a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #53 pc 00000000001a9f2e  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #59 pc 0000000000299036  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #65 pc 00000000002983bc  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #71 pc 0000000000298388  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #77 pc 000000000029ba2a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #83 pc 000000000029bf20  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #89 pc 0000000000290362  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #95 pc 0000000000294f24  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #101 pc 00000000002950f4  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #107 pc 000000000029009a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #110 pc 000000000029003c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.531 24845-24845 DEBUG                   pid-24845                            A        #115 pc 0000000000294e0c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.532 24845-24845 DEBUG                   pid-24845                            A        #126 pc 0000000000290068  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
2023-11-21 11:34:14.532 24845-24845 DEBUG                   pid-24845                            A        #129 pc 0000000000294d90  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~Pua-MPb3_YSekKggq0wYvw==/com.scan-GEIEq0XRBLMCfIwCAOPiMw==/base.apk!classes6.dex]
---------------------------- PROCESS ENDED (18948) for package com.scan ----------------------------
2023-11-21 11:34:14.683  3202-3600  DollieAdapterService    pid-3202                             E  notifyActivityState pkg:com.scan/com.scan.MainActivity state:19 fg:false mUid:10304
---------------------------- PROCESS ENDED (24847) for package com.scan ----------------------------

Camera Device

{"hardwareLevel": "full", "hasFlash": true, "hasTorch": true, "id": "0", "isMultiCam": false, "maxZoom": 8, "minZoom": 1, "name": "BACK (0)", "neutralZoom": 1, "physicalDevices": ["wide-angle-camera"], "position": "back", "sensorOrientation": "landscape-right", "supportsFocus": true, "supportsLowLightBoost": true, "supportsRawCapture": true}

Device

honor 70

VisionCamera Version

v3.6.4

Can you reproduce this issue in the VisionCamera Example app?

Yes, I can reproduce the same issue in the Example app here

Additional information

@sunnystarh sunnystarh added the 🐛 bug Something isn't working label Nov 21, 2023
@yasirlateef
Copy link

+1

In my case, the app only crashes after the first QR scan. Once I restart the app, it proceeds to scan QR codes without any crash. I just came across this issue yesterday. I'll definitely share any findings under this thread.

@apadev666
Copy link

apadev666 commented Nov 21, 2023

  • 1
    I have the same issue please tell what we can do

@apadev666
Copy link

@mrousavy please take a look at this

@mrousavy
Copy link
Owner

@mrousavy please take a look at this

@apadev666 why?

@apadev666
Copy link

@manuelbieh any ideas why its happening?
as I understand there are many users with this same problem, I tried to downgrade version of package but nothing helped. Can you help ?

@yasirlateef
Copy link

@apadev666 this could happen for a number of reasons. Firstly, it could happen if you don't configure your camera properly. Try removing all the props except for the required ones and try adding them one-by-one to see what breaks.

@yasirlateef
Copy link

There is no apparent bug related to the scanner functionality per-se.

@apadev666
Copy link

I don't have any prop just standard initialization used from docs

@apadev666
Copy link

<Camera
      photo
      device={device}
      isActive={isActive}
      codeScanner={codeScanner}
      style={[styles.absoluteFill]}
      torch={isTorchEnabled ? 'on' : 'off'}
    />
    
    here is code

@apadev666
Copy link

it can crash for the first time but also after for example 10 attempts

@interstates21
Copy link

+1

@sunnystarh
Copy link
Author

I looked up issue 2090 and someone answered that changing react-native-vison-camera to version 3.5.1 works fine. So I tried lowering the version. Fortunately, I scanned the qrcode from afternoon to now, the app will not crash when scanning the qrcode.((I tried upgrading to v3.6.6 and v3.6.8 yesterday, and also tried downgrading to v3.6.0, but there was always a crash)

@rodgomesc
Copy link
Contributor

@sunnystarh it's possible to update your log with more details before Fatal signal ?, there's some vision-camera logs that can help understand what's happening

@rodgomesc
Copy link
Contributor

can you guys try those steps and lmk if works

  • update/check if google play services is on last version
  • Settings > Apps > Google Play Services > Storage > Clear cache

this seems to be related to mlkit itself

mlkit/issues/714
mlkit/issues/598

@apadev666
Copy link

@rodgomesc can you tell me please what is the latest version?

@yasirlateef
Copy link

@sunnystarh I can confirm downgrading to v.3.5.1 resolves this issue for now.

@apadev666
Copy link

@yasirlateef @sunnystarh @rodgomesc for me event downgrade is not working((

@apadev666
Copy link

@rodgomesc now Im using 23.44.14 version of google play service

@yasirlateef
Copy link

@yasirlateef @sunnystarh @rodgomesc for me event downgrade is not working((

If it were related to the package, downgrading would make a difference for you as well.

@apadev666
Copy link

@yasirlateef it can be after some period, can you please try to scan barcode 10-15 times?

@apadev666
Copy link

@rodgomesc I have tried also clean cache method as you mentioned, but the same crash(

@rodgomesc
Copy link
Contributor

hey @apadev666 please stop spamming this is not a chat, try to write more sentences in same message

@rodgomesc
Copy link
Contributor

@yasirlateef @sunnystarh @rodgomesc for me event downgrade is not working((

are you sure? you answered this on the same minute that yasirlateef did yoy tried that version before?

@apadev666
Copy link

apadev666 commented Nov 21, 2023

W W0000 00:00:1700572096.722037 12915 abi_method_util.h:33] not supported: TfLiteInterpreterGetTensor: TF Lite in Google Play services has stable ABI version 1.11.0 which is less than the required version 1.13.0.
2023-11-21 17:08:16.726 12211-12211 CameraSession com.gingy I Adding 4032 x 3024 Photo Output in Format #256...
2023-11-21 17:08:16.726 12211-12915 libc com.gingy A Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x6e1f79325b in tid 12915 (pool-13-thread-), pid 12211 (com.gingy)
2023-11-21 17:08:16.750 12211-12233 BufferQueueProducer com.gingy E ImageReader-1280x720f23m2-12211-30 queueBuffer: BufferQueue has been abandoned
2023-11-21 17:08:16.754 12211-12710 BufferQueueProducer com.gingy E ImageReader-1280x720f23m2-12211-30 dequeueBuffer: BufferQueue has been abandoned
2023-11-21 17:08:16.754 12211-12211 CameraSession com.gingy I Adding 1280 x 720 CodeScanner Output in Format #35...
2023-11-21 17:08:16.757 12211-12211 CreateCaptureSession com.gingy I Camera 0: Creating Capture Session #1017... Hardware Level: 3} | Outputs: [android.hardware.camera2.params.OutputConfiguration@355ade1d, android.hardware.camera2.params.OutputConfiguration@5fdb62cc]
2023-11-21 17:08:16.757 12211-12211 CreateCaptureSession com.gingy I Using new API (>=28)
2023-11-21 17:08:16.776 12211-12233 BufferQueueProducer com.gingy E ImageReader-1280x720f23m2-12211-30 queueBuffer: BufferQueue has been abandoned
2023-11-21 17:08:17.342 12211-13360 BpBinder com.gingy I onLastStrongRef automatically unlinking death recipients:
2023-11-21 17:08:17.345 12211-12598 CreateCaptureSession com.gingy I Camera 0: Capture Session #1017 configured!
2023-11-21 17:08:17.345 12211-12211 CameraSession com.gingy I Successfully configured Session with 2 outputs for Camera #0!
2023-11-21 17:08:17.345 12211-12598 CreateCaptureSession com.gingy I Camera 0: Capture Session #1016 closed!
2023-11-21 17:08:17.345 12211-12211 CameraSession com.gingy W Preview Output is null, aborting...
2023-11-21 17:08:17.345 12211-12211 CameraSession com.gingy I Successfully updated CameraSession Configuration! isActive: true
2023-11-21 17:08:17.347 12211-12211 CameraView com.gingy I Updating CameraSession...
2023-11-21 17:08:17.348 12211-12598 CameraSession com.gingy I Updating CameraSession Configuration...
2023-11-21 17:08:17.348 12211-12598 CameraSession com.gingy I Successfully updated CameraSession Configuration! isActive: false
2023-11-21 17:08:17.375 12211-12211 Choreographer com.gingy I Skipped 38 frames! The application may be doing too much work on its main thread.
2023-11-21 17:08:17.530 12211-12211 PreviewView com.gingy I Creating PreviewView...
2023-11-21 17:08:17.531 12211-12211 PreviewView com.gingy I PreviewView onMeasure(0, 0)
2023-11-21 17:08:17.531 12211-12211 PreviewView com.gingy D coverSize :: 1920x1080 (0.5625), 0x0 (NaN)
2023-11-21 17:08:17.531 12211-12211 PreviewView com.gingy D Fitted dimensions set: 0x0
2023-11-21 17:08:17.541 12211-12211 PreviewView com.gingy I Resizing PreviewView to 1920 x 1080...
2023-11-21 17:08:17.542 12211-12211 CameraView com.gingy I Updating CameraSession...
2023-11-21 17:08:17.542 12211-12598 CameraSession com.gingy I Updating CameraSession Configuration...
2023-11-21 17:08:17.542 12211-12598 CameraSession com.gingy I Configuring Camera #0...
2023-11-21 17:08:17.542 12211-12598 CameraManager com.gingy I Camera 0: Opening...
2023-11-21 17:08:17.545 1331-28017 CameraService pid-1331 I CameraService::connect call (PID -1 "com.gingy", camera ID 0) and Camera API version 2
2023-11-21 17:08:17.608 12211-12211 unknown:Na...chyManager com.gingy E Unable to update properties for view tag 2363
com.facebook.react.uimanager.IllegalViewOperationException: ViewManager for tag 2363 could not be found.

                                                                                                	at com.facebook.react.uimanager.NativeViewHierarchyManager.resolveViewManager(NativeViewHierarchyManager.java:111)
                                                                                                	at com.facebook.react.uimanager.NativeViewHierarchyManager.updateProperties(NativeViewHierarchyManager.java:138)
                                                                                                	at com.facebook.react.uimanager.UIImplementation.synchronouslyUpdateViewOnUIThread(UIImplementation.java:290)
                                                                                                	at com.swmansion.reanimated.NodesManager.updateProps(NodesManager.java:372)
                                                                                                	at com.swmansion.reanimated.nativeProxy.NativeProxyCommon.updateProps(NativeProxyCommon.java:102)
                                                                                                	at com.swmansion.reanimated.AndroidUIScheduler.triggerUI(Native Method)
                                                                                                	at com.swmansion.reanimated.AndroidUIScheduler$1.run(AndroidUIScheduler.java:24)
                                                                                                	at com.swmansion.reanimated.AndroidUIScheduler$2.runGuarded(AndroidUIScheduler.java:43)
                                                                                                	at com.facebook.react.bridge.GuardedRunnable.run(GuardedRunnable.java:30)
                                                                                                	at android.os.Handler.handleCallback(Handler.java:938)
                                                                                                	at android.os.Handler.dispatchMessage(Handler.java:99)
                                                                                                	at android.os.Looper.loopOnce(Looper.java:201)
                                                                                                	at android.os.Looper.loop(Looper.java:288)
                                                                                                	at android.app.ActivityThread.main(ActivityThread.java:7842)
                                                                                                	at java.lang.reflect.Method.invoke(Native Method)
                                                                                                	at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
                                                                                                	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1003)

2023-11-21 17:08:17.626 12211-12211 CameraView com.gingy I Updating CameraSession...
2023-11-21 17:08:17.628 12211-12211 PreviewView com.gingy I PreviewView onMeasure(1080, 2039)
2023-11-21 17:08:17.629 12211-12211 PreviewView com.gingy D coverSize :: 1920x1080 (0.5625), 1080x2039 (0.5296714075527219)
2023-11-21 17:08:17.629 12211-12211 PreviewView com.gingy D Fitted dimensions set: 1147x2039
2023-11-21 17:08:17.645 12211-12211 CameraSession com.gingy I PreviewView Surface created! Surface(name=null)/@0x719384d
2023-11-21 17:08:17.645 12211-12211 CameraSession com.gingy I Setting Preview Output...
2023-11-21 17:08:17.646 12211-12211 CameraSession com.gingy I PreviewView Surface updated! Surface(name=null)/@0x719384d 1920 x 1080
2023-11-21 17:08:17.682 13338-13338 DEBUG pid-13338 A Cmdline: com.gingy
2023-11-21 17:08:17.682 13338-13338 DEBUG pid-13338 A pid: 12211, tid: 12915, name: pool-13-thread- >>> com.gingy <<<
2023-11-21 17:08:17.727 12211-13360 BpBinder com.gingy I onLastStrongRef automatically unlinking death recipients:
2023-11-21 17:08:17.730 1331-28017 Camera2ClientBase pid-1331 I Camera 0: Opened. Client: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.731 2171-13376 ActivityTaskManager pid-2171 W Force finishing activity com.gingy/.MainActivity
2023-11-21 17:08:17.731 12211-12321 CameraDevices com.gingy I Camera #0: Available!
2023-11-21 17:08:17.737 12211-12321 CameraDevices com.gingy I Camera #0: Unavailable!
2023-11-21 17:08:17.823 2171-7950 WindowManager pid-2171 I WIN DEATH: Window{5b530be u0 com.gingy/com.gingy.MainActivity}
2023-11-21 17:08:17.823 2171-2303 ConnectivityService pid-2171 D releasing NetworkRequest [ REQUEST id=11392, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED Uid: 11285 RequestorUid: 11285 RequestorPkg: com.gingy UnderlyingNetworks: Null] ] (release request)
2023-11-21 17:08:17.823 1331-28017 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.823 1331-5342 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.823 2171-7950 InputManager-JNI pid-2171 W Input channel object '5b530be com.gingy/com.gingy.MainActivity (client)' was disposed without first being removed with the input manager!
2023-11-21 17:08:17.824 1331-28017 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.824 1331-5342 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.824 1331-5342 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:17.824 2171-3773 ActivityManager pid-2171 I Process com.gingy (pid 12211) has died: prcp TOP
2023-11-21 17:08:17.829 1331-2385 Camera2ClientBase pid-1331 I Closed Camera 0. Client was: com.gingy (PID 12211, UID 11285)
2023-11-21 17:08:18.234 2171-2217 ActivityTaskManager pid-2171 W Activity top resumed state loss timeout for ActivityRecord{3491e0 u0 com.gingy/.MainActivity t-1 f}}

here is logcat report @rodgomesc

PS sorry), yes I've tried many different versions also but its not working

@yasirlateef
Copy link

@apadev666 You logs indicate no errors thrown from VisionCamera itself. The only exception I can see in your logs is:

 E Unable to update properties for view tag 2363
com.facebook.react.uimanager.IllegalViewOperationException: ViewManager for tag 2363 could not be found.

It shows that the crash is coming from something related to your JSX/Styles. I would say you're trying to use style properties which are not allowed. It's exactly why downgrading won't do any good for you because this thread isn't relevant to your issue.

@apadev666
Copy link

apadev666 commented Nov 21, 2023

@yasirlateef can it be that I'm using Camera inside bottom sheet?
here is render of this component
!!device && (
<BottomSheetModal
ref={bottomSheetModalRef}
snapPoints={[WINDOW_HEIGHT]}
handleStyle={GlobalStyles.hide}
onDismiss={() => setIsScannerVisible(false)}>
<Camera
photo
device={device}
isActive={isActive}
codeScanner={codeScanner}
style={[styles.absoluteFill]}
torch={isTorchEnabled ? 'on' : 'off'}
/>
<Pressable
hitSlop={hitSlop}
style={styles.closeContainer(insets?.top)}
onPress={() => bottomSheetModalRef.current?.dismiss?.()}>


{!!isActive && (



)}
<TouchableOpacity
style={styles.lightIconContainer}
onPress={() => setIsTorchEnabled(prevState => !prevState)}>
<AppIcon
width={44}
height={44}
fill={Colors.transparent}
icon={isTorchEnabled ? 'lightOn' : 'lightOff'}
/>

also here is other log that I'm getting

Cmdline: com.gingy
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A pid: 13850, tid: 15003, name: pool-13-thread- >>> com.gingy <<<
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #42 pc 00000000001ec59c [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #47 pc 000000000020e804 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #52 pc 00000000003657f0 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #57 pc 0000000000364c34 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #62 pc 0000000000364c14 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #67 pc 000000000036827c [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #72 pc 0000000000368780 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #77 pc 000000000035e068 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #82 pc 0000000000362c58 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #87 pc 0000000000362e28 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #92 pc 000000000035ddd0 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #97 pc 000000000035dd7c [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.910 15030-15030 DEBUG pid-15030 A #102 pc 0000000000362b50 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.911 15030-15030 DEBUG pid-15030 A #117 pc 000000000035dda4 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXgw8ow40Pw==/base.apk!classes17.dex]
2023-11-21 17:32:21.911 15030-15030 DEBUG pid-15030 A #122 pc 0000000000362ad4 [anon:dalvik-classes17.dex extracted in memory from /data/app/~~jOCFGdxj5wkTo72tf5GlNw==/com.gingy-7vuK7DAnJ-PXXg

@rodgomesc
Copy link
Contributor

rodgomesc commented Nov 21, 2023

can you guys please test if this change solves the issue for you? @yasirlateef @apadev666

  • remove node_modules
  • modify vision-camera in package.json
"dependencies": {
  "react-native-vision-camera": "github:rodgomesc/react-native-vision-camera#cad3699"
}
  • yarn install
  • yarn android

@apadev666
Copy link

@rodgomesc do I need to remove node modules and after package json update call yarn install?

after this useCameraPermission and other hooks cant be found

@rodgomesc
Copy link
Contributor

rodgomesc commented Nov 21, 2023

updated my previous post with a step by step

Note: even with typescript complaining about not found react-native this is just a typescript thing, please ignore and run the app

@alexrififi
Copy link

@Hector-Chong fail on build:

Unresolved reference: Dispatchers

@Hector-Chong
Copy link

Dispatchers

You should import Dispatchers by yourself.

import kotlinx.coroutines.Dispatchers

@alexrififi
Copy link

@Hector-Chong
Your fix works! Big thanks! ❤️

@WitchMad
Copy link

Still happening here :/ using same version 3.6.8
logcat:

11-24 14:01:52.758  2219  2947 I CreateCaptureSession: Camera 0: Capture Session #1014 configured!
11-24 14:01:52.758  1125  3679 I qomx_image_core: OMX_Init:101] Complete 3
11-24 14:01:52.763  2219  2219 I CameraSession: Successfully configured Session with 2 outputs for Camera #0!
11-24 14:01:52.763  2219  2219 I CameraSession: Successfully updated CameraSession Configuration! isActive: false
11-24 14:01:52.763  2219  2219 D DEBUG_CAMERA: difference: 4
11-24 14:01:52.770  2219  2947 I CreateCaptureSession: Camera 0: Capture Session #1013 closed!
11-24 14:01:52.773  1125  3679 I qomx_image_core: OMX_GetHandle:243] get instance pts is 0xe50c9700
11-24 14:01:52.773  1125  3679 D qomx_image_core: OMX_GetHandle:261] handle = 0xe50c9704 Instanceindex = 0,comp_idx 2 g_ptr 0xe7fc9b30
11-24 14:01:52.773  1125  3679 I mm-still: omx_component_set_callbacks: Bad Parameter 0xe50c9704 0x0 0x0 0x0 0x0
11-24 14:01:52.773  1125  3679 I qomx_image_core: OMX_GetHandle:267] Success
11-24 14:01:52.912  1131  1276 I chatty  : uid=1000(system) HwBinder:1131_1 identical 8 lines
11-24 14:01:52.936 31488 31488 D DeviceStatisticsService: chargerType=2 batteryLevel=37 totalBatteryCapacity=4173800
11-24 14:01:52.936 31488 31488 D DeviceInfoHidlClient: isPowerInfoNeverSent()=true
11-24 14:01:52.937 28305 28411 D CmdCenter: - SquareBase: sPrevBatStatus: 2, status: 2
11-24 14:01:52.937 28305 28411 D CmdCenter: - SquareBase: sPrevBatteryPercent: 37 newPercent: 37
11-24 14:01:52.937 28305 28411 D CmdCenter: - SquareBase: sPrevPlugType: 2 plugType: 2
11-24 14:01:53.363  1131  1276 I chatty  : uid=1000(system) HwBinder:1131_1 identical 26 lines
11-24 14:01:53.394 15890 15922 W TimedProcessReaper: Memory state is: 125
11-24 14:01:53.404 12833 10255 W Nearby  : [MBleClient] Ignore outdated onLost runnable from cycle : 1948, current cycle : 3006 [CONTEXT service_id=49 ]
11-24 14:01:53.446  3002  6659 D IpClient/wlan0: addressUpdated: 2804:14d:5494:82bf:246c:7aff:fedd:2896/64 on wlan0 flags 0x00000100 scope 0
11-24 14:01:53.446  3002  6659 D IpClient/wlan0: addressUpdated: 2804:14d:5494:82bf:49b7:3a65:69ce:4c65/64 on wlan0 flags 0x00000001 scope 0
11-24 14:01:53.487 12833 10255 W Nearby  : [MBleClient] Ignore outdated onLost runnable from cycle : 1949, current cycle : 3006 [CONTEXT service_id=49 ]
11-24 14:01:54.563  1131  1276 I chatty  : uid=1000(system) HwBinder:1131_1 identical 64 lines
11-24 14:01:54.590  1137  1163 I android.hardware.thermal@2.0-service.qti: uevent triggered for sensor: msm_therm
11-24 14:01:54.944  2219  3089 F libc    : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x7bdaeee7b0 in tid 3089 (pool-22-thread-), pid 2219

@mrousavy
Copy link
Owner

Hey all - does #2204 fix your issue?

@mrousavy
Copy link
Owner

Please change this locally and test it.

@alexrififi
Copy link

Hey all - does #2204 fix your issue?

@mrousavy Hello! I tried this patch, but it didn't solve the problem. But this helped

@mrousavy
Copy link
Owner

Ah - gotcha - @Hector-Chong could you please create a PR instead of just posting random patches/diffs here? Appreciate it, thanks!

@mrousavy
Copy link
Owner

Honestly I am not 100% sure if this is a true fix though, because once the destroyPreviewOutputSync method returns, you can no longer use the SurfaceView's surface to stream into it - so we should not return from that method until we actually stop the captureSession.... weird

@WitchMad
Copy link

WitchMad commented Nov 24, 2023

No one of those solved to me :/
logcat of last test:

11-24 14:24:48.825 11847 11847 I CameraSession: Successfully configured Session with 2 outputs for Camera #0!
11-24 14:24:48.825 11847 11847 W CameraSession: Preview Output is null, aborting...
11-24 14:24:48.825 11847 11847 I CameraSession: Successfully updated CameraSession Configuration! isActive: true
11-24 14:24:48.827 11847 11847 I CameraView: Updating CameraSession...
11-24 14:24:48.827 11847 12672 I CameraSession: Updating CameraSession Configuration...
11-24 14:24:48.828  1125 13313 I qomx_image_core: OMX_Init:101] Complete 3
11-24 14:24:48.833 11847 12672 I CameraSession: Successfully updated CameraSession Configuration! isActive: false
11-24 14:24:48.842 11847 12672 I CreateCaptureSession: Camera 0: Capture Session #1011 closed!
11-24 14:24:48.842  1125 13313 I qomx_image_core: OMX_GetHandle:243] get instance pts is 0xe50cc950
11-24 14:24:48.843  1125 13313 D qomx_image_core: OMX_GetHandle:261] handle = 0xe50cc954 Instanceindex = 0,comp_idx 2 g_ptr 0xe7fc9c40
11-24 14:24:48.843  1125 13313 I mm-still: omx_component_set_callbacks: Bad Parameter 0xe50cc954 0x0 0x0 0x0 0x0
11-24 14:24:48.843  1125 13313 I qomx_image_core: OMX_GetHandle:267] Success
11-24 14:24:50.393  1131  1277 I chatty  : uid=1000(system) HwBinder:1131_2 identical 93 lines
11-24 14:24:50.416  3002 13965 D IpClient/wlan0: addressUpdated: 2804:14d:5494:82bf:246c:7aff:fedd:2896/64 on wlan0 flags 0x00000100 scope 0
11-24 14:24:50.418  3002 24395 D IpClient/wlan0: addressUpdated: 2804:14d:5494:82bf:49b7:3a65:69ce:4c65/64 on wlan0 flags 0x00000001 scope 0
11-24 14:24:50.811 11847 12792 F libc    : Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x7bf0b5dde4 in tid 12792 (pool-27-thread-), pid 11847 (myapp)
11-24 14:24:50.944  1131  1277 I chatty  : uid=1000(system) HwBinder:1131_2 identical 28 lines
11-24 14:24:50.966 13321 13321 E DEBUG   : failed to readlink /proc/12792/fd/199: No such file or directory
11-24 14:24:50.966 13321 13321 E DEBUG   : failed to readlink /proc/12792/fd/201: No such file or directory
11-24 14:24:50.966 13321 13321 E DEBUG   : failed to readlink /proc/12792/fd/203: No such file or directory
11-24 14:24:51.012  1131  1277 I chatty  : uid=1000(system) HwBinder:1131_2 identical 1 line
11-24 14:24:51.178 13321 13321 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstone
11-24 14:24:51.186  1004  1004 I tombstoned: received crash request for pid 12792
11-24 14:24:51.190 13321 13321 I crash_dump64: performing dump of process 11847 (target tid = 12792)
11-24 14:24:51.211 13321 13321 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
11-24 14:24:51.211 13321 13321 F DEBUG   : Build fingerprint: 'motorola/sofiar_retail/sofiar:11/RPES31.Q4U-47-35-12/24aaf7:user/release-keys'
11-24 14:24:51.211 13321 13321 F DEBUG   : Revision: 'pvt'
11-24 14:24:51.211 13321 13321 F DEBUG   : ABI: 'arm64'
11-24 14:24:51.215 13321 13321 F DEBUG   : Timestamp: 2023-11-24 14:24:51-0300
11-24 14:24:51.215 13321 13321 F DEBUG   : pid: 11847, tid: 12792, name: pool-27-thread-  >>> com.myapp <<<
11-24 14:24:51.215 13321 13321 F DEBUG   : uid: 10804
11-24 14:24:51.215 13321 13321 F DEBUG   : signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x7bf0b5dde4
11-24 14:24:51.215 13321 13321 F DEBUG   :     x0  0000007ae4512138  x1  000000000000043c  x2  0000000000000008  x3  0000000000000010
11-24 14:24:51.215 13321 13321 F DEBUG   :     x4  0000007c67724e18  x5  0000007ef82a6c38  x6  0000007dca219cf0  x7  0000007dca219cf0
11-24 14:24:51.215 13321 13321 F DEBUG   :     x8  0000000000000000  x9  000000000000021e  x10 00000000000001b9  x11 b400007bfb35e040
11-24 14:24:51.215 13321 13321 F DEBUG   :     x12 000000000000021d  x13 00000000000c5de4  x14 0000007bf0b5dde4  x15 0000007bf0b5d8e4
11-24 14:24:51.215 13321 13321 F DEBUG   :     x16 0000007bf0a98000  x17 0000007ef82262c0  x18 00000000000e05fc  x19 0000007ae4512258
11-24 14:24:51.216 13321 13321 F DEBUG   :     x20 0000007ae45121f8  x21 0000007ae4512390  x22 000000000000021e  x23 00000000000001b9
11-24 14:24:51.216 13321 13321 F DEBUG   :     x24 b400007ca785f9bc  x25 0000007ae4517000  x26 0000000000001831  x27 0000007ae4512a48
11-24 14:24:51.216 13321 13321 F DEBUG   :     x28 0000007ae4512a88  x29 00000000000006ef
11-24 14:24:51.216 13321 13321 F DEBUG   :     lr  0000007af99289ec  sp  0000007ae4512130  pc  0000007af9928ab4  pst 0000000080000000
11-24 14:24:51.618 13321 13321 F DEBUG   : backtrace:
11-24 14:24:51.618 13321 13321 F DEBUG   :     NOTE: Function names and BuildId information is missing for some frames due
11-24 14:24:51.618 13321 13321 F DEBUG   :     NOTE: to unreadable libraries. For unwinds of apps, only shared libraries
11-24 14:24:51.618 13321 13321 F DEBUG   :     NOTE: found under the lib/ directory are readable.
11-24 14:24:51.618 13321 13321 F DEBUG   :       #00 pc 0000000000128ab4  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #01 pc 00000000000812d4  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #02 pc 000000000007af18  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #03 pc 000000000007ac18  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #04 pc 000000000007b1c8  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #05 pc 0000000000079554  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.618 13321 13321 F DEBUG   :       #06 pc 00000000000795f4  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk
11-24 14:24:51.619 13321 13321 F DEBUG   :       #07 pc 000000000013ced4  /apex/com.android.art/lib64/libart.so (art_quick_generic_jni_trampoline+148) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #08 pc 0000000000133564  /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 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: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #10 pc 0000000000319148  /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+376) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #11 pc 0000000000310534  /apex/com.android.art/lib64/libart.so (bool art::interpreter::DoCall<true, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+696) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #12 pc 0000000000683980  /apex/com.android.art/lib64/libart.so (MterpInvokeDirectRange+436) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #13 pc 000000000012dc14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_direct_range+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #14 pc 0000000000054c42  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk (offset 0xd7000) (com.google.android.libraries.barhopper.BarhopperV3.recognize+26)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #15 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #16 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #17 pc 0000000000051db0  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk (offset 0xd7000) (m.po.g+40)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #18 pc 0000000000306a70  /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.13423079315433257381)+268) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #19 pc 000000000066cbf4  /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #20 pc 000000000013cff8  /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #21 pc 0000000002179ed4  /memfd:jit-cache (deleted) (offset 0x2000000) (m.po.b+5428)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #22 pc 0000000000133564  /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #23 pc 00000000001a8a78  /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #24 pc 0000000000319148  /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+376) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #25 pc 000000000030f474  /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: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #26 pc 000000000067deec  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+848) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #27 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #28 pc 000000000008d5ca  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk (offset 0xd7000) (m.bgb.a+90)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #29 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #30 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #31 pc 0000000000038834  /data/user_de/0/com.google.android.gms/app_chimera/m/000006cd/dl-VisionBarcode.optional_234414100400.apk (offset 0xd7000) (m.bp.onTransact+40)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #32 pc 0000000000306a70  /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.13423079315433257381)+268) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #33 pc 000000000066cbf4  /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #34 pc 000000000013cff8  /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #35 pc 00000000021a167c  /memfd:jit-cache (deleted) (offset 0x2000000) (android.os.Binder.transact+140)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #36 pc 0000000000133564  /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 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: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #38 pc 0000000000319148  /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+376) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #39 pc 000000000030f474  /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: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #40 pc 000000000067f8bc  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1032) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #41 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #42 pc 00000000002f16f6  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.android.gms.internal.mlkit_vision_barcode.zza.zzb+14)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #43 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #44 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #45 pc 000000000031399a  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.android.gms.internal.mlkit_vision_barcode.zzvt.zzd+22)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #46 pc 0000000000306a70  /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.13423079315433257381)+268) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #47 pc 000000000066cbf4  /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #48 pc 000000000013cff8  /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #49 pc 00000000021a3f68  /memfd:jit-cache (deleted) (offset 0x2000000) (com.google.mlkit.vision.barcode.internal.zzn.zza+776)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #50 pc 00000000021b3374  /memfd:jit-cache (deleted) (offset 0x2000000) (com.google.mlkit.vision.barcode.internal.zzk.zze+164)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #51 pc 0000000000133564  /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #52 pc 00000000001a8a78  /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #53 pc 0000000000319148  /apex/com.android.art/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+376) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.619 13321 13321 F DEBUG   :       #54 pc 000000000030f474  /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: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #55 pc 000000000067deec  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+848) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #56 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #57 pc 00000000004f2df0  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.vision.barcode.internal.zzk.run+4)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #58 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #59 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #60 pc 00000000004f6492  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.vision.common.internal.MobileVisionBase.zza+22)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #61 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #62 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #63 pc 00000000004f6988  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.vision.common.internal.zza.call+8)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #64 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #65 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #66 pc 00000000004ec282  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.ModelResource.zza+74)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #67 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #68 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #69 pc 00000000004f0e44  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.zzn.run+20)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #70 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #71 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #72 pc 00000000004f1014  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.zzt.run+20)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #73 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #74 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #75 pc 00000000004ebfba  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.MlKitThreadPool.zze+26)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #76 pc 00000000006810e8  /apex/com.android.art/lib64/libart.so (MterpInvokeStatic+1224) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #77 pc 000000000012d994  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_static+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #78 pc 00000000004ebf5c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.MlKitThreadPool.zzc+16)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #79 pc 00000000006810e8  /apex/com.android.art/lib64/libart.so (MterpInvokeStatic+1224) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #80 pc 000000000012d994  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_static+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #81 pc 00000000004f0d2c  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.zzk.run+4)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #82 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #83 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #84 pc 00000000001f9f46  /apex/com.android.art/javalib/core-oj.jar (java.util.concurrent.ThreadPoolExecutor.runWorker+158)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #85 pc 000000000067e18c  /apex/com.android.art/lib64/libart.so (MterpInvokeVirtual+1520) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #86 pc 000000000012d814  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_virtual+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #87 pc 00000000001f8d08  /apex/com.android.art/javalib/core-oj.jar (java.util.concurrent.ThreadPoolExecutor$Worker.run+4)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #88 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #89 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #90 pc 00000000004ebf88  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.MlKitThreadPool.zzd+20)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #91 pc 00000000006810e8  /apex/com.android.art/lib64/libart.so (MterpInvokeStatic+1224) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #92 pc 000000000012d994  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_static+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #93 pc 00000000004f0cb0  [anon:dalvik-classes6.dex extracted in memory from /data/app/~~5OALAo4kw5zHTQVYvLBWAg==/com.myapp-tVkimyUDfBTynbpa6mxvSg==/base.apk!classes6.dex] (com.google.mlkit.common.sdkinternal.zzi.run+4)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #94 pc 000000000067fbc4  /apex/com.android.art/lib64/libart.so (MterpInvokeInterface+1808) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #95 pc 000000000012da14  /apex/com.android.art/lib64/libart.so (mterp_op_invoke_interface+20) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #96 pc 00000000000eb7d0  /apex/com.android.art/javalib/core-oj.jar (java.lang.Thread.run+8)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #97 pc 0000000000306a70  /apex/com.android.art/lib64/libart.so (art::interpreter::Execute(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame&, art::JValue, bool, bool) (.llvm.13423079315433257381)+268) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #98 pc 000000000066cbf4  /apex/com.android.art/lib64/libart.so (artQuickToInterpreterBridge+780) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #99 pc 000000000013cff8  /apex/com.android.art/lib64/libart.so (art_quick_to_interpreter_bridge+88) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #100 pc 0000000000133564  /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+548) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #101 pc 00000000001a8a78  /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #102 pc 00000000005565dc  /apex/com.android.art/lib64/libart.so (art::JValue art::InvokeVirtualOrInterfaceWithJValues<art::ArtMethod*>(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, art::ArtMethod*, jvalue const*)+460) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #103 pc 00000000005a5a00  /apex/com.android.art/lib64/libart.so (art::Thread::CreateCallback(void*)+1308) (BuildId: 0a722124e1d08ab1896df95b634bc489)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #104 pc 00000000000afce8  /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+64) (BuildId: 41c660c694a41af9265f00d2b0edc316)
11-24 14:24:51.620 13321 13321 F DEBUG   :       #105 pc 00000000000502c8  /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 41c660c694a41af9265f00d2b0edc316)
11-24 14:24:51.261  1131  1277 I chatty  : uid=1000(system) HwBinder:1131_2 identical 4 lines
11-24 14:24:51.870  1137  1163 I android.hardware.thermal@2.0-service.qti: uevent triggered for sensor: msm_therm
11-24 14:24:52.420  1004  1004 E tombstoned: Tombstone written to: /data/tombstones/tombstone_27
11-24 14:24:52.424  2403 13326 W ActivityTaskManager:   Force finishing activity com.myapp/.MainActivity
11-24 14:24:52.429  2403 13326 V WindowManager: Changing focus from Window{461b19a u0 com.myapp/com.myapp.MainActivity} to null displayId=0

@Hector-Chong
Copy link

Ah - gotcha - @Hector-Chong could you please create a PR instead of just posting random patches/diffs here? Appreciate it, thanks!

I've added #2213 with more information there.

@BrechtBD
Copy link

Version: 3.6.8

It occurred to me as well. I tried to debug this, and it seems to be a race condition.

The issue is because of the function below. When I change runBlocking to launch(Dispatchers.Main) to make it run on the main thread, it works.

com.mrousavy.camera.core.CameraSession#destroyPreviewOutputSync

    private fun destroyPreviewOutputSync() {
        Log.i(TAG, "Destroying Preview Output...")
        runBlocking {
            Log.d("DEBUG_CAMERA", "difference: 1")
            configure { config ->
                config.preview = CameraConfiguration.Output.Disabled.create()
            }
            Log.d("DEBUG_CAMERA", "difference: 4")
        }
    }
import kotlinx.coroutines.Dispatchers

    private fun destroyPreviewOutputSync() {
        Log.i(TAG, "Destroying Preview Output...")
        launch(Dispatchers.Main) {
            Log.d("DEBUG_CAMERA", "difference: 1")
            configure { config ->
                config.preview = CameraConfiguration.Output.Disabled.create()
            }
            Log.d("DEBUG_CAMERA", "difference: 4")
        }
    }

This fix seems to work for me

@lBroth
Copy link

lBroth commented Nov 27, 2023

It works for me too

@only1chi
Copy link

Thank you @Hector-Chong
I can confirm that this is working for me too, with qr code scanned values.

@only1chi
Copy link

only1chi commented Dec 5, 2023

@Hector-Chong

Have you observed an ANR with your fix?
I am now observing an ANR (Application Not Responding) when Camera Session is closed (after barcode scanning), and this has to do with runBlocking function.

When CameraView is destroyed, it calls cameraSession.close() which has the following code block:

  override fun close() {
    runBlocking {
      mutex.withLock {
        destroy()
        photoOutputSynchronizer.clear()
      }
    }
  }

We use sentry to log errors. Here is some of our sentry log:

image

@only1chi
Copy link

only1chi commented Dec 5, 2023

It is known out there that using runBlocking seems to present some issues for Android 12 and 13 devices. In my case, it appears as if the app is suspended because runBlocking is blocking the calling thread from executing. Unfortunately, whatever it is waiting for never returns, so it hangs.

Here is some information on Stack Overflow.

@Hector-Chong
Copy link

@Hector-Chong

Have you observed an ANR with your fix? I am now observing an ANR (Application Not Responding) when Camera Session is closed (after barcode scanning), and this has to do with runBlocking function.

When CameraView is destroyed, it calls cameraSession.close() which has the following code block:

  override fun close() {
    runBlocking {
      mutex.withLock {
        destroy()
        photoOutputSynchronizer.clear()
      }
    }
  }

We use sentry to log errors. Here is some of our sentry log:

image

Sadly, I've not experienced either an ANR or another crash within my project.

@mrousavy
Copy link
Owner

mrousavy commented Dec 6, 2023

I need logs for that.

@only1chi
Copy link

only1chi commented Dec 6, 2023

I need logs for that.

Here is our sentry logs.

jdk.internal.misc.Unsafe in park
java.util.concurrent.locks.LockSupport in parkNanos at line 252
kotlinx.coroutines.BlockingCoroutine in joinBlocking at line 88
kotlinx.coroutines.BuildersKt__BuildersKt in runBlocking at line 59
kotlinx.coroutines.BuildersKt in runBlocking at line 1
kotlinx.coroutines.BuildersKt__BuildersKt in runBlocking$default at line 38
kotlinx.coroutines.BuildersKt in runBlocking$default at line 1
com.mrousavy.camera.core.CameraSession in close at line 99
com.mrousavy.camera.CameraView in destroy at line 136
com.mrousavy.camera.CameraViewManager in onDropViewInstance at line 35
com.mrousavy.camera.CameraViewManager in onDropViewInstance at line 15
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 635
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in dropView at line 646
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in dropView at line 368
com.facebook.react.uimanager.NativeViewHierarchyManager in manageChildren at line 499
com.swmansion.reanimated.layoutReanimation.ReanimatedNativeHierarchyManager in manageChildren at line 279
com.facebook.react.uimanager.UIViewOperationQueue$ManageChildrenOperation in execute at line 217
com.facebook.react.uimanager.UIViewOperationQueue$1 in run at line 915
com.facebook.react.uimanager.UIViewOperationQueue in flushPendingBatches at line 1026
com.facebook.react.uimanager.UIViewOperationQueue in access$2600 at line 47
com.facebook.react.uimanager.UIViewOperationQueue$DispatchUIFrameCallback in doFrameGuarded at line 1086
com.facebook.react.uimanager.GuardedFrameCallback in doFrame at line 29
com.facebook.react.modules.core.ReactChoreographer$ReactChoreographerDispatcher in doFrame at line 175
com.facebook.react.modules.core.ChoreographerCompat$FrameCallback$1 in doFrame at line 85
android.view.Choreographer$CallbackRecord in run at line 1118
android.view.Choreographer in doCallbacks at line 926
android.view.Choreographer in doFrame at line 854
android.view.Choreographer$FrameDisplayEventReceiver in run at line 1105
android.os.Handler in handleCallback at line 938
android.os.Handler in dispatchMessage at line 99
android.os.Looper in loopOnce at line 201
android.os.Looper in loop at line 288
android.app.ActivityThread in main at line 7916
java.lang.reflect.Method in invoke
com.android.internal.os.RuntimeInit$MethodAndArgsCaller in run at line 577
com.android.internal.os.ZygoteInit in main at line 1009

@mrousavy
Copy link
Owner

mrousavy commented Dec 7, 2023

That's a stacktrace, not a log. Do you have native logs in Sentry?

@only1chi
Copy link

only1chi commented Dec 7, 2023

That's a stacktrace, not a log. Do you have native logs in Sentry?

I do understand.
We are using react-native-screens where we transition from screen to screen without necessarily unmounting components. One of the screens is a barcode scanning screen which is used to scan a log in QR code. Once the user logs in, it starts an authentication sequence, which culminates in a transition from the barcode screen to another screen. Once this transition occurs, the application hangs. I think this is because the barcode screen is not unmounted. The runBlocking piece of code called during CameraSession.close(), does not return.

I showed the stacktrace, because it was the most obvious suggesting a sequence of events. Since it is an ANR, there isn't a lot of logs. See below, the much I could extract. Pay attention to the suspense or delay freeze.


[09:32:46] W | ReactNativeJS ▶︎ 'An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.8%22%2C%22message%22%3A53%2C%22args%22%3A%5B%5D%7D', '\n at SyncProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:402707:24)\n/n) at EntitySyncContextProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:310537:24)\n/n) at DeveloperContextProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:421583:24)\n/n) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:396178:24)\n/n) at BaseNavigationContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:395747:28)\n/n) at ThemeProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:400777:21)\n/n) at NavigationContainerInner (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:400656:26)\n/n) at RootNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:360277:24)\n/n) at PortalProviderComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:420287:33)\n/n) at BottomSheetModalProviderWrapper (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:420460:24)\n/n) at IntlProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:334008:50)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at UserInactivity (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:340622:24)\n/n) at AppNavigationContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:338924:24)\n/n) at SelectedEntityTypeProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:482920:24)\n/n) at SelectedWorkScopePreferenceProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:643950:24)\n/n) at ToolKitProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:486678:25)\n/n) at ToolKits (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:714699:25)\n/n) at ConnectedToolsProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:486907:25)\n/n) at ConnectedTools (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:714642:24)\n/n) at ToastProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:714081:24)\n/n) at MediaQueryProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:132538:24)\n/n) at AppSettingsProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&mod

[09:32:46] W | ReactNativeJS ▶︎ 'An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.8%22%2C%22message%22%3A53%2C%22args%22%3A%5B%5D%7D', '\n at SyncProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:402707:24)\n/n) at LoginHOC (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401462:27)\n/n) at anonymous (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401496:29)\n/n) at StaticContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399978:17)\n/n) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:396178:24)\n/n) at SceneView (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399868:22)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at CardSheet (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691123:23)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:121778:38)\n/n) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691208:34)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at Card (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690571:36)\n/n) at CardContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690190:34)\n/n) at RNSScreen\n at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at Suspender (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665062:22)\n/n) at Suspense\n at Freeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665086:23)\n/n) at DelayedFreeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.stst

[09:32:46] I | ReactNative ▶︎ [GESTURE HANDLER] Gesture handler is already enabled for a parent view

[09:33:03] W | ReactNativeJS ▶︎ 'An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.8%22%2C%22message%22%3A53%2C%22args%22%3A%5B%5D%7D', '\n at SyncProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:402707:24)\n/n) at LoginHOC (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401462:27)\n/n) at anonymous (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401496:29)\n/n) at StaticContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399978:17)\n/n) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:396178:24)\n/n) at SceneView (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399868:22)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at CardSheet (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691123:23)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:121778:38)\n/n) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691208:34)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at Card (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690571:36)\n/n) at CardContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690190:34)\n/n) at RNSScreen\n at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at Suspender (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665062:22)\n/n) at Suspense\n at Freeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665086:23)\n/n) at DelayedFreeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.stst

[09:33:13] I | ReactNativeJS ▶︎ 'SelectedEntityTypeProvider: ', { setSelectedEntityType: [Function: bound dispatchSetState] }

[09:33:13] W | ReactNativeJS ▶︎ 'An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.8%22%2C%22message%22%3A53%2C%22args%22%3A%5B%5D%7D', '\n at SyncProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:402707:24)\n/n) at LoginHOC (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401462:27)\n/n) at anonymous (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401496:29)\n/n) at StaticContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399978:17)\n/n) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:396178:24)\n/n) at SceneView (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399868:22)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at CardSheet (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691123:23)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:121778:38)\n/n) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691208:34)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at Card (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690571:36)\n/n) at CardContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690190:34)\n/n) at RNSScreen\n at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at Suspender (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665062:22)\n/n) at Suspense\n at Freeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665086:23)\n/n) at DelayedFreeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.stst

[09:33:13] I | ReactNativeJS ▶︎ 'SelectedEntityTypeProvider: ', { persistedSelectedEntityType: null }

[09:33:13] I | ReactNativeJS ▶︎ 'SelectedEntityTypeProvider: ', { setSelectedEntityType: [Function: bound dispatchSetState] }

[09:33:13] I | ReactNativeJS ▶︎ 'SelectedEntityTypeProvider: ', { setSelectedEntityType: [Function: bound dispatchSetState] }

[09:33:15] W | ReactNativeJS ▶︎ 'An error occurred! For more details, see the full error text at https://go.apollo.dev/c/err#%7B%22version%22%3A%223.8.8%22%2C%22message%22%3A53%2C%22args%22%3A%5B%5D%7D', '\n at SyncProvider (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:402707:24)\n/n) at LoginHOC (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401462:27)\n/n) at anonymous (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:401496:29)\n/n) at StaticContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399978:17)\n/n) at EnsureSingleNavigator (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:396178:24)\n/n) at SceneView (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:399868:22)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at CardSheet (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691123:23)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:121778:38)\n/n) at PanGestureHandler (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:691208:34)\n/n) at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at RCTView\n at View (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:44664:43)\n/n) at Card (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690571:36)\n/n) at CardContainer (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:690190:34)\n/n) at RNSScreen\n at AnimatedComponent (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:53955:38)\n/n) at AnimatedComponentWrapper\n at Suspender (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665062:22)\n/n) at Suspense\n at Freeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.ststorquefit&modulesOnly=false&runModule=true:665086:23)\n/n) at DelayedFreeze (http://localhost:8081/index.bundle//&platform=android&dev=true&minify=false&app=com.stst
`

@mrousavy
Copy link
Owner

mrousavy commented Dec 7, 2023

The runBlocking piece of code called during CameraSession.close(), does not return.

Yea, this is because for some reason we are deadlocking on the mutex. I don't understand how this can happen, as we only lock it temporarily in a few places, and none are recursive. That's why the logs would've been needed, so if you can reproduce this in debug please share the adb logcat logs with me.

Otherwise I don't have the time to debug this right now, maybe in a few days or weeks.

@only1chi
Copy link

only1chi commented Dec 7, 2023

... so if you can reproduce this in debug please share the adb logcat logs with me.

Here are some of the adb logcat which you see just before and after the ANR

12-07 13:39:16.374   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:16.482   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.0069453344]
12-07 13:39:16.483   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.0506518]
12-07 13:39:16.483   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.93014383]
12-07 13:39:16.483   980  1278 D SemNscXgbMsL1: 1 sample inference time: 1.014154 msecs
12-07 13:39:16.485   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.411231 msecs
12-07 13:39:16.486   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.257077 msecs
12-07 13:39:16.874   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:16.989   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.0084356535]
12-07 13:39:16.990   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.024049507]
12-07 13:39:16.990   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.9319179]
12-07 13:39:16.990   980  1278 D SemNscXgbMsL1: 1 sample inference time: 1.378077 msecs
12-07 13:39:16.992   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.222961 msecs
12-07 13:39:16.993   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.050577 msecs
12-07 13:39:17.033   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:17.033   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:17.163 18183 18183 I wpa_supplicant: Heartbeat 29221
12-07 13:39:17.374   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:17.380   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:17.496   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.011319841]
12-07 13:39:17.496   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.0564654]
12-07 13:39:17.497   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.9441948]
12-07 13:39:17.497   980  1278 D SemNscXgbMsL1: 1 sample inference time: 1.016846 msecs
12-07 13:39:17.498   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.536654 msecs
12-07 13:39:17.500   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.160654 msecs
12-07 13:39:17.500   980  1278 I SemWifiServiceDetector: NSD results: [0, 1, 2, 0, 0, 1, 2, 1] Traff. type 1 Thr 0
12-07 13:39:17.501   980  1281 D SemWifiOptimizer: enable=0 state=0x10 prev=0x10 new=0x00 force=0
12-07 13:39:17.785   980  1238 D DeviceStorageMonitorService: check() STORAGE TOTAL > 64G
12-07 13:39:17.786   980  1238 W DeviceStorageMonitorService: updateBroadcasts(/data) oldLevel:0, newLevel:0, seq:1
12-07 13:39:17.788   428   428 E vold    : getUsedF2fsFileNode -> Cannot Get Used FileNode Number (errno=25 Inappropriate ioctl for device)
12-07 13:39:17.789   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:17.789   980  1238 D DeviceStorageMonitorService: Cannot get USED FILE NODE NUMBER!!!
12-07 13:39:17.791   980  1238 D DeviceStorageMonitorService: Available File Node Number is [-1]
12-07 13:39:17.792   980  1238 W DeviceStorageMonitorService: updateBroadcasts_filenode(/data) fn_oldLevel:0, fn_newLevel:0, seq:1
12-07 13:39:17.874   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:18.003   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.017122561]
12-07 13:39:18.003   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.011592635]
12-07 13:39:18.003   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.978075]
12-07 13:39:18.004   980  1278 D SemNscXgbMsL1: 1 sample inference time: 0.881077 msecs
12-07 13:39:18.005   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.259962 msecs
12-07 13:39:18.006   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.127461 msecs
12-07 13:39:18.067   980  1278 I SemWifiServiceDetector: Traff. tracking suspended
12-07 13:39:18.140 15305 15315 I om.ststorquefi: Background concurrent copying GC freed 219442(8560KB) AllocSpace objects, 38(1540KB) LOS objects, 49% free, 19MB/39MB, paused 107us,85us total 179.106ms
12-07 13:39:18.215   576 16071 I ExynosCameraFrameManager: [CAM(0)][RUNNING FRAME WORKER]-(workerMain[983]): wait and pop fail, ret(-110)
12-07 13:39:18.361   461   461 D io_stats: !@   8,0 r 84194026 2546474136 w 32421458 700315976 d 0 0 f 0 0 iot 34929496 0 th 0 0 0 pt 0 inp 0 0 1312737.762
12-07 13:39:18.373   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:18.654   980   994 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:18.655   980   994 D EDMNativeHelper: isCameraEnabled
12-07 13:39:18.655   980   994 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:18.655   980   994 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:18.655   980   994 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:18.655   980   994 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:18.657   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:18.658   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:18.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:19.373   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:19.393   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:19.845   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:19.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:19.933   717 15914 I Camera3-Device: WatchDog...
12-07 13:39:20.034   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:20.034   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:20.362   461   461 D io_stats: !@   8,0 r 84194031 2546474320 w 32421458 700315976 d 0 0 f 0 0 iot 34929500 0 th 0 0 0 pt 0 inp 0 0 1312739.763
12-07 13:39:20.373   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:20.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:21.223   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, enabled : 2, data : 7.000000, -1.000000, 0.000000, 0.000000, 0.000000
12-07 13:39:21.373   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:21.404   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:21.660   980  3844 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:21.661   980  3844 D EDMNativeHelper: isCameraEnabled
12-07 13:39:21.662   980  3844 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:21.662   980  3844 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:21.662   980  3844 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:21.662   980  3844 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:21.664   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:21.665   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:21.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:21.911   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:22.155   980  1134 I SensorService: [REARLIGHT] lux value : 143, code value : 0
12-07 13:39:22.364   461   461 D io_stats: !@   8,0 r 84194049 2546474700 w 32421458 700315976 d 0 0 f 0 0 iot 34929504 0 th 0 0 0 pt 0 inp 0 0 1312741.765
12-07 13:39:22.372   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:22.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:23.034   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:23.034   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:23.216   576 16071 I ExynosCameraFrameManager: [CAM(0)][RUNNING FRAME WORKER]-(workerMain[983]): wait and pop fail, ret(-110)
12-07 13:39:23.373   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:23.423   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:23.429 20080 20080 D NetworkController.WifiSignalController: notifyListener: visible=true, enabled=true, connected=true, inetCondition=1, isDefault=true, receivedCR=true, receivedIC=-1, shouldForceHide=false, emptyConnected=false
12-07 13:39:23.452   627   627 I SurfaceFlinger: SFWD update time=1312742854076354
12-07 13:39:23.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:23.975   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:24.111  9601  9640 I DBG_FMM :[FmmService          ]: accountWorking(false), pushManagerWorking(false), remainedOperation(false), eventOccured(false), hasWearable(true) 
12-07 13:39:24.366   461   461 D io_stats: !@   8,0 r 84194119 2546477768 w 32421526 700317344 d 0 0 f 0 0 iot 34929548 0 th 0 0 0 pt 0 inp 0 0 1312743.767
12-07 13:39:24.372   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:24.668   980  1145 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:24.669   980  1145 D EDMNativeHelper: isCameraEnabled
12-07 13:39:24.670   980  1145 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:24.670   980  1145 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:24.670   980  1145 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:24.671   980  1145 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:24.673   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:24.677   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:24.872   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:24.934   717 15914 I Camera3-Device: WatchDog...
12-07 13:39:25.372   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:25.437   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:25.873   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:26.035   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:26.035   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:26.041   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:26.069   559   578 D BatteryDump: wait_for_battery_event : occurred : change@/devices/platform/battery/power_supply/battery 
12-07 13:39:26.084   559   559 I android.hardware.health@2.1-service-samsung: updateLrpSysfs: write: 248
12-07 13:39:26.124   980  1153 D SamsungAlarmManager: Expired : 8
12-07 13:39:26.124   980  1153 V SamsungAlarmManager: Sending to uid : 1000 L=685f224:Bootup_Booster alarm=Alarm{d166094 type 1 origWhen 1701974306726 whenElapsed 1991712893 android}
12-07 13:39:26.125   980  2665 D SamsungAlarmManager: Cancel Alarm calling from uid:1000 pid :980 / L:685f224
12-07 13:39:26.126   980  1153 V SamsungAlarmManager: Sending to uid : 1000 L=33169a:*job.delay* alarm=Alarm{a6c673d type 3 origWhen 1991751193 whenElapsed 1991751193 android}
12-07 13:39:26.127   980  1153 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991772295
12-07 13:39:26.130   980  2665 D SamsungAlarmManager: setInexact (T:1/F:8/AC:false) 20231207T143926 now=1991772297 - CU:1000/CP:980/L:685f224:Bootup_Booster
12-07 13:39:26.130   980  2665 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991772298
12-07 13:39:26.132   536   543 E statsd  : Predicate 5980654721335871649 dropping data for dimension key (10)0x2010101->10678[I] (10)0x30000->*alarm*[S] 
12-07 13:39:26.132   536   543 E statsd  : Predicate -7037417284711607308 dropping data for dimension key (10)0x2010101->10678[I] (10)0x30000->*alarm*[S] 
12-07 13:39:26.136   980   980 D SamsungAlarmManager: setInexact (T:3/F:0/AC:false) 20231207T134100 now=1991772304 - CU:1000/CP:980/L:33169a:*job.delay*
12-07 13:39:26.137   980   980 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991772304
12-07 13:39:26.138   536   543 E statsd  : Predicate 5980654721335871649 dropping data for dimension key (10)0x2010101->10678[I] (10)0x30000->*alarm*[S] 
12-07 13:39:26.138   536   543 E statsd  : Predicate -7037417284711607308 dropping data for dimension key (10)0x2010101->10678[I] (10)0x30000->*alarm*[S] 
12-07 13:39:26.322   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, enabled : 2, data : 7.000000, -1.000000, 0.000000, 0.000000, 0.000000
12-07 13:39:26.367   461   461 D io_stats: !@   8,0 r 84194125 2546478408 w 32421526 700317344 d 0 0 f 0 0 iot 34929556 0 th 0 0 0 pt 0 inp 0 0 1312745.769
12-07 13:39:26.372   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:26.529 20080 20080 D NetworkController.WifiSignalController: notifyListener: visible=true, enabled=true, connected=true, inetCondition=1, isDefault=true, receivedCR=true, receivedIC=-1, shouldForceHide=false, emptyConnected=false
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [CONTACT contacts(794) data(9674) accounts({com.google (2)=777, com.skype.raider (17)=743, vnd.sec.contact.phone (1)=2, com.google.android.apps.tachyon (14)=92, com.google.android.apps.tachyon (63)=31, com.whatsapp (19)=403}) accounts deleted({}) in_trash(in_trash(0), in_trash_for_sync(0)) calls([logtype:100 cnt:484, logtype:200 cnt:56, logtype:300 cnt:444, logtype:500 cnt:2, logtype:1000 cnt:1351, logtype:1150 cnt:169]) countryIso(US) userId(0)  ]
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [ agr({[2 ,17 ,63 ,19]=1, [2 ,17 ,17 ,17 ,19]=1, [2 ,17 ,19 ,19 ,19]=1, [2 ,17 ,19 ,63]=16, [2 ,17 ,63]=8, [2]=88, [1 ,19 ,17]=1, [2 ,17 ,19]=236, [2 ,17 ,17]=3, [2 ,14 ,17]=11, [2 ,19 ,17 ,14]=3, [19]=1, [2 ,19 ,14 ,17]=4, [17 ,2 ,19 ,17 ,17 ,14]=1, [17 ,19 ,2 ,14]=1, [2 ,17 ,17 ,19 ,17]=1, [2 ,17]=256, [17]=13, [2 ,17 ,19 ,19]=2, [2 ,17 ,19 ,17]=4, [17 ,17 ,17 ,17]=1, [1 ,17 ,19]=1, [17 ,17 ,17 ,17 ,17]=1, [2 ,17 ,17 ,14]=1, [2 ,17 ,17 ,17 ,17 ,19 ,17]=1, [17 ,17 ,17]=2, [2 ,17 ,17 ,19]=3, [2 ,17 ,19 ,14]=44, [2 ,2 ,17]=2, [2 ,17 ,19 ,19 ,14]=1, [2 ,19 ,17 ,63]=2, [2 ,17 ,14]=10, [2 ,2 ,17 ,19 ,63]=1, [19 ,2 ,17]=1, [2 ,19 ,17]=51, [2 ,17 ,17 ,17 ,17 ,17 ,19 ,63]=1, [2 ,19 ,19 ,14 ,17]=1, [17 ,2 ,19 ,17 ,14 ,17]=1, [2 ,2]=1, [2 ,17 ,14 ,19]=9, [17 ,19 ,63]=1, [2 ,17 ,14 ,17 ,19]=1, [2 ,19 ,63 ,17]=1, [2 ,14 ,17 ,19]=4})  ]
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [ actCnt({android.process.acore(11467)=1})  ]
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [PROFILE contacts(0) data(0) accounts({})  ] [SAPROFILE contacts(1) data(0) accounts({vnd.sec.contact.phone (1)=1})  ]
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [STORAGE Contacts(CE) Profile(CE) SAProfile(CE) CallLog(CE)  ]
12-07 13:39:26.819 11467 11496 I ContactsProvider_EventLog: contents_sample_state: [STATE R(F) ]
12-07 13:39:26.872   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:27.083   980  1278 I SemWifiServiceDetector: Traff. tracking resumed
12-07 13:39:27.164 18183 18183 I wpa_supplicant: Heartbeat 29222
12-07 13:39:27.372   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:27.457   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:27.601   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.026897041]
12-07 13:39:27.602   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.026824724]
12-07 13:39:27.602   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.8935736]
12-07 13:39:27.602   980  1278 D SemNscXgbMsL1: 1 sample inference time: 0.7775 msecs
12-07 13:39:27.604   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.395269 msecs
12-07 13:39:27.605   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.150577 msecs
12-07 13:39:27.680   980  3844 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:27.680   980  3844 D EDMNativeHelper: isCameraEnabled
12-07 13:39:27.681   980  3844 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:27.681   980  3844 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:27.681   980  3844 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:27.681   980  3844 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:27.683   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:27.684   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:27.872   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:28.102   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:28.119   980   990 I system_server: Background young concurrent copying GC freed 261224(16MB) AllocSpace objects, 63(1260KB) LOS objects, 11% free, 131MB/148MB, paused 682us,281us total 144.013ms
12-07 13:39:28.121   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.029038077]
12-07 13:39:28.122   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.033267982]
12-07 13:39:28.122   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.91411835]
12-07 13:39:28.123   980  1278 D SemNscXgbMsL1: 1 sample inference time: 1.389692 msecs
12-07 13:39:28.124   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.521115 msecs
12-07 13:39:28.125   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 0.826346 msecs
12-07 13:39:28.173   980   992 W System  : A resource failed to call close. 
12-07 13:39:28.216   576 16071 I ExynosCameraFrameManager: [CAM(0)][RUNNING FRAME WORKER]-(workerMain[983]): wait and pop fail, ret(-110)
12-07 13:39:28.369   461   461 D io_stats: !@   8,0 r 84194140 2546479264 w 32421579 700317784 d 0 0 f 0 0 iot 34929568 0 th 0 0 0 pt 0 inp 0 0 1312747.770
12-07 13:39:28.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:28.628   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.03484317]
12-07 13:39:28.628   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.21203049]
12-07 13:39:28.628   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.8965342]
12-07 13:39:28.628   980  1278 D SemNscXgbMsL1: 1 sample inference time: 0.893154 msecs
12-07 13:39:28.630   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.495808 msecs
12-07 13:39:28.631   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.062077 msecs
12-07 13:39:28.872   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:29.035   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:29.035   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:29.134   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.036067113]
12-07 13:39:29.134   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.13886063]
12-07 13:39:29.135   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.8852981]
12-07 13:39:29.135   980  1278 D SemNscXgbMsL1: 1 sample inference time: 1.116807 msecs
12-07 13:39:29.136   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.308077 msecs
12-07 13:39:29.138   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.227192 msecs
12-07 13:39:29.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:29.472   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:29.639   980  1278 D SemNscXgbMsL1: Probability - Cloud gaming: [0.029629901]
12-07 13:39:29.640   980  1278 D SemNscXgbMsL1: Probability - Real time: [0.17606708]
12-07 13:39:29.640   980  1278 D SemNscXgbMsL1: Probability - Non real time: [0.9390485]
12-07 13:39:29.640   980  1278 D SemNscXgbMsL1: 1 sample inference time: 0.860423 msecs
12-07 13:39:29.641   980  1278 D SemNscXgbL2Rt: L2 RT 1 sample inference time: 1.4225 msecs
12-07 13:39:29.643   980  1278 D SemNscXgbL2Nrt: L2 NRT 1 sample inference time: 1.398693 msecs
12-07 13:39:29.871   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:29.935   717 15914 I Camera3-Device: WatchDog...
12-07 13:39:30.089   980  1278 I SemWifiServiceDetector: Traff. tracking suspended
12-07 13:39:30.178   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:30.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:30.687   980  1145 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:30.687   980  1145 D EDMNativeHelper: isCameraEnabled
12-07 13:39:30.688   980  1145 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:30.688   980  1145 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:30.688   980  1145 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:30.688   980  1145 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:30.690   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:30.691   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:30.871   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:31.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:31.421   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, enabled : 2, data : 7.000000, -1.000000, 0.000000, 0.000000, 0.000000
12-07 13:39:31.484   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:31.872   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:32.036   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:32.036   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:32.125   765  1012 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.128  1793  2026 I ImsSecChannelCallback: receive
12-07 13:39:32.128  1793  2026 I IpcDispatcher<0>: [Rx]: (M)IPC_IIL_CMD (S)IPC_IIL_SSAC_INFO (T)EVENT l:13
12-07 13:39:32.129  2268  2722 I EPDG -- EpdgIpcMessageFactory: ipcMainCmd: 112
12-07 13:39:32.129  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: [Rx]: Main: IPC_IIL_CMD Sub: IPC_IIL_SSAC_INFO Param: FF 00 00 FF 00 00 
12-07 13:39:32.130  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: SSAC info received. Voice Factor -1Voice Time 0Video Factor -1Video Time 0
12-07 13:39:32.130  2268  2346 I EPDG -- SIM0 [EpdgHandler]: Event received: RIL_IIL_SSAC_INFO_UPDATE cid - 0
12-07 13:39:32.130  2268  2346 I EPDG -- SIM0 [NetController]: getIsSsacVoiceEnabled: returning: true
12-07 13:39:32.130  1793  1793 I SsacManager: updateSSACInfo[0] : Voice(-1:0) Video(-1:0)
12-07 13:39:32.130  1793  1793 I SsacManager: Voice Call updateSSACInfo[0] : f[100], t[0]
12-07 13:39:32.130  1793  1793 I SsacManager: Video Call updateSSACInfo[0] : f[100], t[0]
12-07 13:39:32.143  1793  2026 I ImsSecChannelCallback: receive
12-07 13:39:32.143  1793  2026 I IpcDispatcher<0>: [Rx]: (M)IPC_IIL_CMD (S)IPC_IIL_SSAC_INFO (T)EVENT l:13
12-07 13:39:32.143  1793  1793 I SsacManager: updateSSACInfo[0] : Voice(-1:0) Video(-1:0)
12-07 13:39:32.143  2268  2722 I EPDG -- EpdgIpcMessageFactory: ipcMainCmd: 112
12-07 13:39:32.143  1793  1793 I SsacManager: Voice Call updateSSACInfo[0] : f[100], t[0]
12-07 13:39:32.143  1793  1793 I SsacManager: Video Call updateSSACInfo[0] : f[100], t[0]
12-07 13:39:32.144  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: [Rx]: Main: IPC_IIL_CMD Sub: IPC_IIL_SSAC_INFO Param: FF 00 00 FF 00 00 
12-07 13:39:32.144  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: SSAC info received. Voice Factor -1Voice Time 0Video Factor -1Video Time 0
12-07 13:39:32.145  2268  2346 I EPDG -- SIM0 [EpdgHandler]: Event received: RIL_IIL_SSAC_INFO_UPDATE cid - 0
12-07 13:39:32.145  2268  2346 I EPDG -- SIM0 [NetController]: getIsSsacVoiceEnabled: returning: true
12-07 13:39:32.146  2268  2722 I EPDG -- EpdgIpcMessageFactory: ipcMainCmd: 8
12-07 13:39:32.147  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: [Rx]: Main: IPC_NET_CMD Sub: IPC_NET_REGIST Param: FF 03 
12-07 13:39:32.147  2268  2722 I EPDG -- SIM0 [RILRECEIVER]: RX [NET_REGIST] -- RESPONSE -- EPDG AVAILABLE
12-07 13:39:32.147  2268  2722 I EPDG -- SIM0 [IPCDISPATCHER]: [Tx]: Main: IPC_NET_CMD Sub: IPC_NET_REGIST Cmd Type: IPC_CMD_RESP Param: 30 03 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
12-07 13:39:32.147   765  1012 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.147  2268  2719 I EPDG -- SIM0 [MODEM]: EpdgModemSender(): send
12-07 13:39:32.148  2268  2346 I EPDG -- SIM0 [EpdgHandler]: Event received: RIL_EPDG_STATUS_QUERY cid - 2
12-07 13:39:32.151   765  1016 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.159   765   902 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.162   765  1012 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.163   765   902 D SemNativeCarrierFeature_vendor: getInstance
12-07 13:39:32.203   980   980 D SemWifiService: onServiceStateChanged : 0dataNetworkType : 13
12-07 13:39:32.204  1793  1793 I VolteServiceModule: onServiceStateChanged({mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false})
12-07 13:39:32.204  1793  1793 I VolteServiceModule: mIsLteEpsOnlyAttached(1):false
12-07 13:39:32.205   980  1652 D SLocation: SGeofenceCellManager - onServiceStateChanged 0
12-07 13:39:32.206  2268  2346 I EPDG -- SIM0 [NetController]: WWAN Voice Regi: 0 Roaming: 0
12-07 13:39:32.206  2268  2346 I EPDG -- SIM0 [NetController]: WWAN Data Regi: 0 Rat: 13 Roaming: false
12-07 13:39:32.206   980  1233 D MptcpService: onServiceStateChanged {mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false}
12-07 13:39:32.206   980  1233 D MptcpService: checkLteRegistrationState Data Networktype: 13 Data RegState: 0
12-07 13:39:32.206   980  1233 D MptcpService: mLteLost: false mLteLostPrev: false
12-07 13:39:32.206   980  1233 D MptcpService: mRoamingFlag: false RoamingState: false
12-07 13:39:32.208   980   980 W NSLocationMonitor: onServiceStateChanged, state=0 / channel=5035
12-07 13:39:32.208   980   980 I NSLocationMonitor: networkType[13]=LTE / nrState=false
12-07 13:39:32.209  1793  2160 I VolteServiceModule: onServiceStateChanged({mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false})
12-07 13:39:32.209   980  3844 I LocationAccessPolicy: checkLocationPermission - callingUid: 10076, callingPid: 31294, resultForFine: DENIED_HARD
12-07 13:39:32.209  1793  2160 I VolteServiceModule: mIsLteEpsOnlyAttached(0):false
12-07 13:39:32.209   980  3844 I LocationAccessPolicy: checkLocationPermission - callingUid: 10076, callingPid: 31294, resultForCoarse: DENIED_HARD
12-07 13:39:32.209  2673  2759 W NetworkManager_FLP: updateServiceStateChanged, serviceState=0 / isRegistered=true / channel=5035 / networkTypeName=LTE / nr=false
12-07 13:39:32.210  2268  2342 I EPDG -- SIM0 [SMARTCELLULAR]: onServiceStateChanged: 13
12-07 13:39:32.212  2268  2346 I EPDG -- SIM0 [EpdgSubScription]: getIsAirplaneMode: returning: false
12-07 13:39:32.212   980  3844 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcastMultiplePermissions:1275 com.android.server.TelephonyRegistry.broadcastServiceStateChanged:2926 com.android.server.TelephonyRegistry.notifyServiceStateForPhoneId:1633 com.android.internal.telephony.ITelephonyRegistry$Stub.onTransact:455 android.os.Binder.execTransactInternal:1220 
12-07 13:39:32.214   980  3844 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcastMultiplePermissions:1325 android.content.Context.sendBroadcastMultiplePermissions:2220 com.android.server.TelephonyRegistry.broadcastServiceStateChanged:2930 com.android.server.TelephonyRegistry.notifyServiceStateForPhoneId:1633 com.android.internal.telephony.ITelephonyRegistry$Stub.onTransact:455 
12-07 13:39:32.215   980  3844 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcastMultiplePermissions:1325 android.content.Context.sendBroadcastMultiplePermissions:2220 com.android.server.TelephonyRegistry.broadcastServiceStateChanged:2937 com.android.server.TelephonyRegistry.notifyServiceStateForPhoneId:1633 com.android.internal.telephony.ITelephonyRegistry$Stub.onTransact:455 
12-07 13:39:32.216   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.216   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.217   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.217  2268  2346 I EPDG -- SIM0 [NetController]: getIsRssiDisabledForProfiling: returning: false
12-07 13:39:32.218 20080 20080 D KeyguardUpdateMonitor: received broadcast android.intent.action.SERVICE_STATE
12-07 13:39:32.218   980   980 D SemWifiService: received: android.intent.action.SERVICE_STATE
12-07 13:39:32.219 20080 20080 V KeyguardUpdateMonitor: action android.intent.action.SERVICE_STATE serviceState={mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false} subId=1 slotId=0
12-07 13:39:32.219 20080 20080 D MultiSIMController: onReceive() - action = android.intent.action.SERVICE_STATE
12-07 13:39:32.219 20080 20080 D KeyguardUpdateMonitor: handleServiceStateChange(subId=1, slotId=0, serviceState={mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false}
12-07 13:39:32.219   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.219 20080 20080 D KeyguardBottomAreaShortcutView: mIndicationArea margin start : 217, end : 217, bottom : 513
12-07 13:39:32.220 20080 20080 D FaceWidgetPagesController: onRefreshCarrierInfo()
12-07 13:39:32.220   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{eff1aec 20080:com.android.systemui/u0a52} (pid=20080, uid=10052) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.220 20080 20121 D MobileStatusTracker(0/1): onServiceStateChanged voiceState=0 dataState=0
12-07 13:39:32.221   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to com.android.cellbroadcastreceiver/.CellBroadcastReceiver requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.221 20080 20080 D FaceWidgetClockRoamManager: isNetworkRoamingState id=1
12-07 13:39:32.222 20080 20080 D FaceWidgetClockRoamManager: isNetworkRoamingState false
12-07 13:39:32.222 20080 20080 D FaceWidgetClockRoamManager: onRefreshCarrierInfo(pre, now): false, false
12-07 13:39:32.222 20080 20080 D CarrierTextController: onRefreshCarrierInfo(), mTelephonyCapable: true
12-07 13:39:32.222 20080 20080 D CarrierTextController: updateCarrierText(): 1
12-07 13:39:32.222 20080 20121 D NetworkController: ServiceState from intent slotId=0
12-07 13:39:32.222 20080 20080 D CarrierTextController: Handling (subId=1): 5 T-Mobile
12-07 13:39:32.222 20080 20080 D CarrierTextController: carrierTextForSimState = T-Mobile
12-07 13:39:32.222   980  3844 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcastMultiplePermissions:1325 android.content.Context.sendBroadcastMultiplePermissions:2220 com.android.server.TelephonyRegistry.broadcastServiceStateChanged:2941 com.android.server.TelephonyRegistry.notifyServiceStateForPhoneId:1633 com.android.internal.telephony.ITelephonyRegistry$Stub.onTransact:455 
12-07 13:39:32.222 20080 20080 D CarrierTextController: SIM ready and in service: subId=1, ss={mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false}
12-07 13:39:32.222 20080 20080 D CarrierTextController: setText : T-Mobile
12-07 13:39:32.223 20080 20080 D MultiSIMController: MESSAGE_UPDATE_SERVICE_STATE
12-07 13:39:32.224  1793  2022 I PdnController<0>: Default Phone Id = :0MobileConnected=true
12-07 13:39:32.224   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:fine_location due to sender android (uid 1001)
12-07 13:39:32.224   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.224   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.224  1793  2022 I PdnController<0>: onServiceStateChanged: state={mVoiceRegState=0(IN_SERVICE), mDataRegState=0(IN_SERVICE), mChannelNumber=5035, duplexMode()=1, mCellBandwidths=[], mOperatorAlphaLong=<MASKED>, mOperatorAlphaShort=<MASKED>, isManualNetworkSelection=false(automatic), getRilVoiceRadioTechnology=14(LTE), getRilDataRadioTechnology=14(LTE), mCssIndicator=unsupported, mNetworkId=<MASKED>, mSystemId=<MASKED>, mCdmaRoamingIndicator=-1, mCdmaDefaultRoamingIndicator=-1, VoiceRegType=0, Snap=0, MobileData=IN_SERVICE, MobileDataRoamingType=home, MobileDataRat=LTE, OptRadioTech=0, PsOnly=false, FemtocellInd=0, SprDisplayRoam=false, mIsEmergencyOnly=false, isUsingCarrierAggregation=false, mArfcnRsrpBoost=0, mNetworkRegistrationInfos=[NetworkRegistrationInfo{ domain=CS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[VOICE,SMS,VIDEO] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=VoiceSpecificRegistrationInfo { mCssSupported=false mRoamingIndicator=0 mSystemIsInPrl=0 mDefaultRoamingIndicator=0} dataSpecificInfo=null nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}, NetworkRegistrationInfo{ domain=PS transportType=WWAN registrationState=HOME roamingType=NOT_ROAMING accessNetworkTechnology=LTE rejectCause=0 emergencyEnabled=false availableServices=[DATA] cellIdentity=CellIdentityLte:{ mCi=1******50 mPci=343 mTac=2***2 mEarfcn=5035 mBands=[] mBandwidth=2147483647 mMcc=310 mMnc=260 mAlphaLong=T-Mobile mAlphaShort=T-Mobile mAdditionalPlmns={} mCsgInfo=null} voiceSpecificInfo=null dataSpecificInfo=android.telephony.DataSpecificRegistrationInfo :{ maxDataCalls = 4 isDcNrRestricted = false isNrAvailable = false isEnDcAvailable = false LteVopsSupportInfo :  mVopsSupport = 2 mEmcBearerSupport = 2 } nrState=**** rRplmn=310260 isUsingCarrierAggregation=false}], mNrFrequencyRange=0, mOperatorAlphaLongRaw=<MASKED>, mOperatorAlphaShortRaw=<MASKED>, mIsDataRoamingFromRegistration=false, mIsIwlanPreferred=false}Changed=
12-07 13:39:32.224  1793  2022 I PdnController<0>: notifyDataConnectionState
12-07 13:39:32.224  1793  2022 I PdnController<0>: initialize PendedEPDGWeakSignal flag
12-07 13:39:32.224   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:fine_location due to sender android (uid 1001)
12-07 13:39:32.224  1793  2022 I PdnController<0>: setPendedEPDGWeakSignal
12-07 13:39:32.224  1793  2022 I PdnController<0>: notifyDataConnectionState: needNotify=false networkType=13 isEpdgConnected=false dataNetType=13=>13 dataRegState=0=>0
12-07 13:39:32.224  1793  2022 I PdnController<0>: notifySnapshotState: snapshotState=0 old=0
12-07 13:39:32.224  1793  2022 I GeolocationCon: handleMessage : what = SERVICE_STATE_CHANGED
12-07 13:39:32.225   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{eff1aec 20080:com.android.systemui/u0a52} (pid=20080, uid=10052) excludes appop android:fine_location due to sender android (uid 1001)
12-07 13:39:32.225  2268  2346 I EPDG -- SIM0 [Operator]: getSubId(): subID is : 1
12-07 13:39:32.225   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.225   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) excludes appop android:fine_location due to sender android (uid 1001)
12-07 13:39:32.229  1793  2022 I GeolocationCon: onServiceStateChanged[0] : mCountryIso = us, iso = us
12-07 13:39:32.229  1396 23071 D HeadsetPhoneState: service : 1 (2)
12-07 13:39:32.229  1793  2022 E GeolocationCon: onServiceStateChanged: Ignore serving PLMN when Geolocation's one exists
12-07 13:39:32.227   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{c03419d 1376:com.android.phone/1001} (pid=1376, uid=1001) excludes appop android:fine_location due to sender android (uid 1001)
12-07 13:39:32.229   980  1267 V SemWifiBackOff.5G: checkAndSetup nrFrequencyRange=0 / prevNrFrequencyRange=0
12-07 13:39:32.229   980  1267 V SemWifiBackOff.5G: restore back off mode, current: [NONE]
12-07 13:39:32.229   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{47d66f 980:system/1000} (pid=980, uid=1000) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.230   980  1040 W BroadcastQueue: Appop Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to ProcessRecord{eff1aec 20080:com.android.systemui/u0a52} (pid=20080, uid=10052) excludes appop android:read_phone_state due to sender android (uid 1001)
12-07 13:39:32.230  1376  1376 D ServiceStateProvider: subId=1
12-07 13:39:32.230   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to com.android.cellbroadcastreceiver/.CellBroadcastReceiver requires android.permission.ACCESS_FINE_LOCATION due to sender android (uid 1001)
12-07 13:39:32.230   980  1040 W BroadcastQueue: Permission Denial: receiving Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 (has extras) } to com.android.cellbroadcastreceiver/.CellBroadcastReceiver requires android.permission.READ_PHONE_STATE due to sender android (uid 1001)
12-07 13:39:32.236 14390 14390 D CellBroadcastReceiver: onReceive Intent { act=android.intent.action.SERVICE_STATE flg=0x1000010 cmp=com.android.cellbroadcastreceiver/.CellBroadcastReceiver (has extras) }
12-07 13:39:32.236 14390 14390 D CellBroadcastReceiver: onServiceStateChanged, ss: 0
12-07 13:39:32.236 14390 14390 D CellBroadcastReceiver: networkOperator: 310260
12-07 13:39:32.237 14390 14390 D CellBroadcastReceiver: update supported roaming operator as 
12-07 13:39:32.239  1793  2022 I PdnController<0>: onCellLocationChanged: ns=not null
12-07 13:39:32.239   980  1652 D SLocation: SGeofenceCellManager - onCellLocationChanged 1 / 0
12-07 13:39:32.239  1793  2022 I ImsCallSessionManager: onCellLocationChanged, phoneId: 0
12-07 13:39:32.239  1793  2022 I RegiMgr-Handler: handleMessage: EVENT_CELL_LOCATION_CHANGED
12-07 13:39:32.240  2268  2346 I EPDG -- SIM0 [UTILS]: isDifferentSimAndNWOperator(): sim and nw operator are same
12-07 13:39:32.240  2268  2346 I EPDG -- SIM0 [NetController]: onNetworkStatusChanged: voiceNetType: 13 mActiveVoiceRat: 13
12-07 13:39:32.240  2268  2346 I EPDG -- SIM0 [NetController]: mCellularAvailable = true
12-07 13:39:32.242  1793  2022 I RegiMgr<0>: updatePani RegisterTask[0][mProfile=TMobile LTE/WiFi, mRegistrationRat=13, mPdnType=11, mState=REGISTERED, mObject=UserAgent - :
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  total records=93
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[0]: time=12-07 13:05:12.809 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[1]: time=12-07 13:05:12.810 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[2]: time=12-07 13:18:39.227 processed=RegisteredState org=RegisteredState dest=<null> what=33(0x21)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[3]: time=12-07 13:18:39.370 processed=RegisteredState org=RegisteredState dest=<null> what=31(0x1f)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[4]: time=12-07 13:18:40.232 processed=RegisteredState org=RegisteredState dest=<null> what=33(0x21)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[5]: time=12-07 13:18:40.282 processed=RegisteredState org=RegisteredState dest=<null> what=31(0x1f)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[6]: time=12-07 13:19:33.272 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[7]: time=12-07 13:19:33.273 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[8]: time=12-07 13:25:50.590 processed=RegisteredState org=RegisteredState dest=<null> what=25(0x19)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[9]: time=12-07 13:25:59.526 processed=RegisteredState org=RegisteredState dest=<null> what=22(0x16)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[10]: time=12-07 13:36:46.068 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[11]: time=12-07 13:36:46.125 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[12]: time=12-07 13:37:29.460 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[13]: time=12-07 13:37:29.463 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[14]: time=12-07 13:37:33.417 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[15]: time=12-07 13:37:33.418 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[16]: time=12-07 13:38:02.690 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[17]: time=12-07 13:38:02.691 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[18]: time=12-07 13:39:10.479 processed=ReadyState org=RegisteredState dest=<null> what=34(0x22)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>:  rec[19]: time=12-07 13:39:10.480 processed=RegisteredState org=RegisteredState dest=<null> what=2000(0x7d0)
12-07 13:39:32.242  1793  2022 I RegiMgr<0>: curState=RegisteredState
12-07 13:39:32.242  1793  2022 I RegiMgr<0>: , mReason=, mPcscfHostname=null, mDeregiReason=41]
12-07 13:39:32.244  1793  2022 I PaniGenerator<0>: generate: subId=1, network=13
12-07 13:39:32.244  1793  2022 I PaniGenerator<0>: generate: network=13, fallbackPlmn=310260
12-07 13:39:32.244  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.244  1793  2022 I PaniGenerator: getDataPlmn returns null
12-07 13:39:32.244  1793  2022 I PaniGenerator: generate: change to NW PLMN(310260)
12-07 13:39:32.244  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.244  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.244  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.244  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.246 20080 20080 D QS      : setQSExpansion 0.0 -157.325
12-07 13:39:32.246   980  1267 D SemCellularStateManager: onCellInfoChanged: cellInfoList Number of cell: 5
12-07 13:39:32.246   980  1267 D SemCellularStateManager: onCellInfoChanged: Registered = true, mCellularCellId = 122226950
12-07 13:39:32.247 20080 20080 D QS      : setQSExpansion 0.0 -157.325
12-07 13:39:32.247   980  1267 D SemSupplicantStaIfaceHal: updateCellularCapabilities called
12-07 13:39:32.248  2268  2346 I EPDG -- SIM0 [SMARTWIFI]: onServiceStateChanged state=0
12-07 13:39:32.249   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:32.252  1793  2022 I UserAgent<0>: updatePani: pani=3GPP-E-UTRAN-FDD;utran-cell-id-3gpp=31026055f27490906, updatePani: lastPani=
12-07 13:39:32.252  1793  2022 I RegiMgr<0>: updatePani RegisterTask[0][mProfile=TMobile 3G, mRegistrationRat=13, mPdnType=0, mState=IDLE, mObject=null, mReason=, mPcscfHostname=null, mDeregiReason=41]
12-07 13:39:32.252  1793  2145 I StackIF : updatePani: 29390 pani: [3GPP-E-UTRAN-FDD;utran-cell-id-3gpp=31026055f27490906]
12-07 13:39:32.252  1793  2145 I SECIMSJ : [1663]> 140
12-07 13:39:32.252  1793  2153 I [IMS6.0]: IMS_onResponse()
12-07 13:39:32.253  1793  2153 I StackIF : processMessage 2
12-07 13:39:32.253  1793  2153 I StackIF : Processing Response
12-07 13:39:32.253  1793  2153 I SECIMSJ : [1663]< 600
12-07 13:39:32.253  1793  2153 I StackIF : processResponse: reqId 600
12-07 13:39:32.253  1793  2153 I StackIF : processResponse: handle 29390 result 0 reason 0
12-07 13:39:32.254  1376  1376 I Telephony: TelecomAccountRegistry$AccountEntry: isRttCurrentlySupported -- regular acct,, hasVoiceAvailability: true, isRttSupported: false, alwaysAllowWhileRoaming: false, isRoaming: false, isOnWfc: false
12-07 13:39:32.254  1376  1376 V PhoneGlobals: handleServiceStateChanged
12-07 13:39:32.255  1376  1376 D NotificationMgr: updateNetworkSelection, Use Samsung codes instead of AOSP codes
12-07 13:39:32.255  1376  1376 V PhoneGlobals: subId=1,mDefaultDataSubId=1,ss roaming=false
12-07 13:39:32.255  1376  1376 V PhoneGlobals: updateDataRoamingStatus
12-07 13:39:32.255  1376  1376 V PhoneGlobals: dataAllowed=true, reasons=Data allowed reason: NORMAL
12-07 13:39:32.256  1793  2022 I PaniGenerator<0>: generate: subId=1, network=13
12-07 13:39:32.256  1793  2022 I PaniGenerator<0>: generate: network=13, fallbackPlmn=310260
12-07 13:39:32.256  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.256  1793  2022 I PaniGenerator: getDataPlmn returns null
12-07 13:39:32.256  1793  2022 I PaniGenerator: generate: change to NW PLMN(310260)
12-07 13:39:32.256  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.256  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.256  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.256  1793  2022 I PdnController<0>: getCellLocation mNeedCellLocationUpdate : false
12-07 13:39:32.265 20080 20080 D QS      : setQSExpansion 0.0 -157.325
12-07 13:39:32.265 20080 20080 D QS      : setQSExpansion 0.0 -157.325
12-07 13:39:32.304  1376  1385 I m.android.phon: Background concurrent copying GC freed 146606(12MB) AllocSpace objects, 13(564KB) LOS objects, 49% free, 12MB/25MB, paused 179us,106us total 135.753ms
12-07 13:39:32.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:32.371   461   461 D io_stats: !@   8,0 r 84194221 2546481888 w 32421579 700317784 d 0 0 f 0 0 iot 34929628 0 th 0 0 0 pt 0 inp 0 1 1312751.772
12-07 13:39:32.871   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:33.217   576 16071 I ExynosCameraFrameManager: [CAM(0)][RUNNING FRAME WORKER]-(workerMain[983]): wait and pop fail, ret(-110)
12-07 13:39:33.371   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:33.483   980  1033 E Watchdog: !@Sync: 43736 heap: 137 / 148 [2023-12-07 13:39:33.483] sdogWay: softdog FD: 1086
12-07 13:39:33.493   980  1300 D NetdEventListenerService: DNS Requested by : 628, 10678, 0
12-07 13:39:33.694   980  3827 I EDMNativeHelperService: isCameraEnabled
12-07 13:39:33.694   980  3827 D EDMNativeHelper: isCameraEnabled
12-07 13:39:33.695   980  3827 D EDMNativeHelper: checking for camera in EnterpriseDeviceManagerService
12-07 13:39:33.695   980  3827 D EnterpriseDeviceManagerService: isCameraEnabledNative
12-07 13:39:33.695   980  3827 D EnterpriseDeviceManagerService: checking for camera in restriction policy
12-07 13:39:33.696   980  3827 D RestrictionPolicy: isCameraEnabled ret(true) userId(0) cxtInfo.mCallerUid(10678) cxtInfo.mContainerId(0)
12-07 13:39:33.698   717 15957 D CameraDeviceClient: vr service found
12-07 13:39:33.699   717 15957 I CameraDeviceClient: isCameraBlockedByHMT: usbpd_ids: 0000:0000, is camera blocking device: false
12-07 13:39:33.871   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:34.315   717 15915 E Camera2-FrameProcessorBase: FrameProcessorBase: Error waiting for new frames: Connection timed out (-110)
12-07 13:39:34.370   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:34.373   461   461 D io_stats: !@   8,0 r 84194221 2546481888 w 32421610 700318076 d 0 0 f 0 0 iot 34929640 0 th 0 0 0 pt 0 inp 0 0 1312753.774
12-07 13:39:34.457   980  1134 I SensorService: [REARLIGHT] lux value : 145, code value : 0
12-07 13:39:34.870   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1
12-07 13:39:34.935   717 15914 I Camera3-Device: WatchDog...
12-07 13:39:35.037   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 303: S(4) FWK L(  0) 
12-07 13:39:35.037   576   640 I Unihal  : GlobalMonitor.cpp: PrintInfo: 310:      HAL L(  0) 
12-07 13:39:35.242   980  1652 D SLocation: SGeofenceCellManager - requestCellInfoUpdate
12-07 13:39:35.264   980  1267 D SemCellularStateManager: onCellInfoChanged: cellInfoList Number of cell: 4
12-07 13:39:35.264   980  1267 D SemCellularStateManager: onCellInfoChanged: Registered = true, mCellularCellId = 122226950
12-07 13:39:35.267   980  1652 D SLocation: SGeofenceCellManager - onCellInfo
12-07 13:39:35.270   980  1652 D SLocation: SGeofenceCellManager - cellList : 4
12-07 13:39:35.271   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 1
12-07 13:39:35.272   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 2
12-07 13:39:35.272   980  1652 D SamsungAlarmManager: Cancel Alarm calling from uid:1000 pid :980 / L:f09ec79
12-07 13:39:35.273   980  1652 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991781441
12-07 13:39:35.273   980  1652 D SLocation: SGeofenceReceiverManager - geofence id (2) detected : 1
12-07 13:39:35.274   980  1652 D ActivityManager: Received BROADCAST intent 0xfcbeea4 Key{broadcastIntent pkg=android intent=act=com.samsung.android.wifi.GEOFENCE flags=0x2000000 u=0} requestCode=2 sent=0 from uid 1000
12-07 13:39:35.275   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.276   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.277   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 2
12-07 13:39:35.277   980  1652 D SamsungAlarmManager: Cancel Alarm calling from uid:1000 pid :980 / L:dc0de1f
12-07 13:39:35.277   980  1652 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991781445
12-07 13:39:35.277   980  1652 D SLocation: SGeofenceReceiverManager - geofence id (5) detected : 1
12-07 13:39:35.287   980  1652 D ActivityManager: Received BROADCAST intent 0xc8d651a Key{broadcastIntent pkg=android intent=act=com.samsung.android.wifi.GEOFENCE flags=0x2000000 u=0} requestCode=5 sent=0 from uid 1000
12-07 13:39:35.288   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.289   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.290   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 1
12-07 13:39:35.291   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.292   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 2
12-07 13:39:35.292   980  1652 D SamsungAlarmManager: Cancel Alarm calling from uid:1000 pid :980 / L:830a954
12-07 13:39:35.292   980  1652 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991781460
12-07 13:39:35.293   980  1652 D SLocation: SGeofenceReceiverManager - geofence id (11) detected : 1
12-07 13:39:35.299   980  1652 D ActivityManager: Received BROADCAST intent 0xe35de6c Key{broadcastIntent pkg=android intent=act=com.samsung.android.wifi.GEOFENCE flags=0x2000000 u=0} requestCode=11 sent=0 from uid 1000
12-07 13:39:35.300   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.301   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.302   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.303   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 1
12-07 13:39:35.304   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.304   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.305   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 2
12-07 13:39:35.305   980  1652 D SamsungAlarmManager: Cancel Alarm calling from uid:1000 pid :980 / L:8a2f7ca
12-07 13:39:35.305   980  1652 V SamsungAlarmManager: setLocked to kernel - W:1992106491 / NW:1991806168, now=1991781473
12-07 13:39:35.306   980  1652 D SLocation: SGeofenceReceiverManager - geofence id (18) detected : 1
12-07 13:39:35.309   980  1652 D ActivityManager: Received BROADCAST intent 0x4197a0f Key{broadcastIntent pkg=android intent=act=com.samsung.android.wifi.GEOFENCE flags=0x2000000 u=0} requestCode=18 sent=0 from uid 1000
12-07 13:39:35.310   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.310   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.310   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.311   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.311   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.311   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.312   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.312   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.312   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.312   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.312   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.312   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.313   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.313   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.313   980  1652 D SLocation: EventGeofenceObserver - not enough cell db 
12-07 13:39:35.313   980  1652 W SLocation: EventGeofenceObserver - handleEvent UNKNOWN : currentDirection 0
12-07 13:39:35.314   980  1652 W SLocation: EventGeofenceObserver - handleEvent ENTER : currentDirection 1
12-07 13:39:35.315   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.320   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.320   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.321   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.321   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.321   980  1652 W SLocation: EventGeofenceObserver - handleEvent EXIT : currentDirection 2
12-07 13:39:35.322   980  1652 D SLocation: SGeofenceReceiverManager - PendingIntent onSendFinished id:2
12-07 13:39:35.322   980  1652 D SLocation: SGeofenceReceiverManager - PendingIntent onSendFinished id:5
12-07 13:39:35.322   980  1652 D SLocation: SGeofenceReceiverManager - PendingIntent onSendFinished id:11
12-07 13:39:35.322   980  1652 D SLocation: SGeofenceReceiverManager - PendingIntent onSendFinished id:18
12-07 13:39:35.370   564   943 D android.hardware.sensors@2.0-service.multihal: BioSensor_common::readEvents, FAR = -1

@MMYurt
Copy link

MMYurt commented Dec 26, 2023

Any updates? Have the latest releases fixed this issue?

@haliechm
Copy link

haliechm commented Jan 1, 2024

+1

@parlet
Copy link
Contributor

parlet commented Jan 11, 2024

Any updates? Have the latest releases fixed this issue?

@MMYurt, nope, still reproducible in v3.7.0.

@Serck96
Copy link

Serck96 commented Jan 12, 2024

@parlet Do you add 'VisionCamera_enableCodeScanner=true' to gradle.properties? I just tried the latest version, 3.7.1, and it worked fine. However, I first uninstalled the preview version of the app, updated the node modules, cleaned the metro cache, and then tried it.

@parlet
Copy link
Contributor

parlet commented Jan 12, 2024

@parlet Do you add 'VisionCamera_enableCodeScanner=true' to gradle.properties?

@Serck96, yes, I did.

I just tried the latest version, 3.7.1, and it worked fine. However, I first uninstalled the preview version of the app, updated the node modules, cleaned the metro cache, and then tried it.

I suppose it doesn't hurt, but that's probably not what it is.

It's possible that you haven't encountered this problem due to its somewhat limited reproducibility. This issue may also depend on the specific devices used and the exact steps involved. Others have reported reproducing this issue in v3.7.0 as well.

By the way, I now see this issue is closed.
A link for further tracking for posterity: #2116.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.