🐛 onStopped callback is not invoked when isActive prop changes from true to false
What's happening?
Description
The onStopped event handler is not being called when the <Camera> component is programmatically stopped by setting the isActive prop from true to false. The expected behavior is that this callback should be triggered to signal that the camera session has concluded.
To Reproduce
- Render the <Camera> component with an onStopped callback function defined.
- Set the isActive prop to true initially.
- Use a state variable to control the isActive prop.
- Trigger a state update that changes isActive from true to false (e.g., by pressing a button).
- Observe that the onStopped function is never executed.
Reproducible Code Snippet
Here is a minimal example to demonstrate the issue. The console.log inside onStopped is never printed to the console when the "Deactivate Camera" button is pressed.
Reproduceable Code
import React, { useState, useCallback } from 'react';
import { View, Button, Text, StyleSheet } from 'react-native';
import { Camera, useCameraDevice } from 'react-native-vision-camera';
export default function CameraBugScreen() {
const [isCameraActive, setIsCameraActive] = useState(true);
const device = useCameraDevice('back');
const onStopped = useCallback(() => {
// This log is never called
console.log('✅ Camera session stopped!');
}, []);
const onButtonPress = () => {
console.log('Attempting to stop camera session...');
setIsCameraActive(false);
};
if (device == null) {
return <Text>No camera device found.</Text>;
}
return (
<View style={StyleSheet.absoluteFill}>
{isCameraActive ? (
<Camera
style={StyleSheet.absoluteFill}
device={device}
isActive={isCameraActive}
onStopped={onStopped}
photo={true}
/>
) : (
<View style={styles.stoppedContainer}>
<Text>Camera is inactive.</Text>
</View>
)}
<View style={styles.buttonContainer}>
{isCameraActive && (
<Button title="Deactivate Camera" onPress={onButtonPress} />
)}
</View>
</View>
);
}
const styles = StyleSheet.create({
buttonContainer: {
position: 'absolute',
bottom: 50,
width: '100%',
alignItems: 'center',
},
stoppedContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
Relevant log output
09-03 21:32:01.212 4124 4476 D OplusAppQuickStart_AppQuickStartingSurface: timeout,remove it surfaceControl:Surface(name=OplusStartingSurface)/@0xc6ee206, @parent:Surface(name=Task=7838)/@0xab840c7, @request:Task{8393c3a #7838 type=standard A=10596:com.nilesecure.dev}Rect(0, 0 - 1440, 3168), @type:2, shared:false
09-03 21:32:01.388 1843 2001 D nativeloader: Load /system/lib64/liblog.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes20.dex): ok
09-03 21:32:01.389 1843 2001 D nativeloader: Load /data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!/lib/arm64-v8a/libsentry.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes20.dex): ok
09-03 21:32:01.389 1843 2001 D nativeloader: Load /data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!/lib/arm64-v8a/libsentry-android.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes20.dex): ok
09-03 21:32:01.404 4124 6960 D ConnectivityService: requestNetwork for uid/pid:10596/1843 activeRequest: null callbackRequest: 26242 [NetworkRequest [ REQUEST id=26243, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 isUidTracked: false declaredMethods: AVAIL|LOSING|LOST|UNAVAIL
09-03 21:32:01.406 4124 6168 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26243, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:01.406 4124 6168 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26243, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:01.407 4124 6168 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=26243, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:01.407 4124 6168 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26243, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:01.527 1843 1893 I RNMMKV : Initializing MMKV at /data/user/0/com.nilesecure.dev/files/mmkv...
09-03 21:32:01.704 2532 8492 I SurfaceFlinger: [SF client] REMOVE (0xb40000765f12d710) for (1843:com.nilesecure.dev)
09-03 21:32:01.742 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=411, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=true, flags=0, newFlags=1660957536, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:01.743 4124 6960 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=411, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{c8e1e11 u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:01.743 4124 6960 V WindowManager: Relayout Window{c8e1e11 u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:01.744 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xd9d2289,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:01.750 1843 2026 D nativeloader: Load /data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!/lib/arm64-v8a/libimagepipeline.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes20.dex): ok
09-03 21:32:01.802 1843 1893 D nativeloader: Load /data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!/lib/arm64-v8a/libgesturehandler.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes20.dex): ok
09-03 21:32:02.313 4124 4892 D ConnectivityService: requestNetwork for uid/pid:10596/1843 activeRequest: null callbackRequest: 26244 [NetworkRequest [ REQUEST id=26245, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 isUidTracked: false declaredMethods: AVAIL|LOSING|LOST|UNAVAIL
09-03 21:32:02.324 4124 4892 D ConnectivityService: requestNetwork for uid/pid:10596/1843 activeRequest: null callbackRequest: 26246 [NetworkRequest [ REQUEST id=26247, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]] callback flags: 0 order: 2147483647 isUidTracked: false declaredMethods: AVAIL|LOST|NC
09-03 21:32:02.327 4124 6168 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26245, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.328 4124 6168 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26245, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.330 4124 6168 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=26245, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.331 4124 6168 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26245, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.339 4124 6168 D OemPaidWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26247, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.340 4124 6168 D MultiInternetWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26247, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.342 4124 6168 D WifiNetworkFactory: got request NetworkRequest [ REQUEST id=26247, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.343 4124 6168 D UntrustedWifiNetworkFactory: got request NetworkRequest [ REQUEST id=26247, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VCN_MANAGED&NOT_BANDWIDTH_CONSTRAINED Uid: 10596 RequestorUid: 10596 RequestorPkg: com.nilesecure.dev UnderlyingNetworks: Null] ]
09-03 21:32:02.502 4124 6836 I LinkPower: [MonitorService] update scene:S_OFF name:wifi_wakeup_duration mr:{d=5456, t={com.nilesecure.dev=2319, com.instagram.android=509, android.uid.shell=1758, com.coloros.weather.service=259}}
09-03 21:32:02.503 4124 6836 I LinkPower: [MonitorService] update scene:S_S_OFF name:wifi_wakeup_duration mr:{d=5456, t={com.nilesecure.dev=2319, com.instagram.android=509, android.uid.shell=1758, com.coloros.weather.service=259}}
09-03 21:32:02.607 4124 6836 I LinkPower: [MonitorLeafBpfWakeup] Origin WakeupInfoMain Diff:5s InWakeup:null OutWakeup:{com.coloros.weather.service=1} WakeupDuration(ms):{com.nilesecure.dev=2319, android.uid.shell=1758, com.instagram.android=509, com.coloros.weather.service=259, null=123}
09-03 21:32:02.710 7544 8012 I ModemAci: [AppInfo] [LO, DA]:{ stamp=420577281 duration=5 inWakeupC={} outWakeupC={com.coloros.weather.service=1} wakeupTime={null=123, com.nilesecure.dev=2319, com.instagram.android=509, android.uid.shell=1758, com.coloros.weather.service=259} trafficC={}}
09-03 21:32:03.837 1843 1893 D nativeloader: Load /data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!/lib/arm64-v8a/librnscreens.so using class loader ns clns-8 (caller=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk!classes16.dex): ok
09-03 21:32:04.056 4124 4530 I ActivityManager: Start proc 2051:com.google.android.webview:sandboxed_process0:org.chromium.content.app.SandboxedProcessService0:0/u0i211 for {com.nilesecure.dev/org.chromium.content.app.SandboxedProcessService0:0}
09-03 21:32:04.057 2317 2317 E qspmHal : setAppInfoH atPid = 2051, gpuFname:com.nilesecure.dev, gpuFver:7258143331
09-03 21:32:04.081 4124 5245 D SplitScreenAppReader: SPLIT_TOUCH support check:com.nilesecure.dev = false
09-03 21:32:04.082 4124 5245 D ResourcesManagerCache: For package com.nilesecure.dev we got cacheList [null] appInfoExt is null ? false hasFeature ? false
09-03 21:32:04.082 4124 5245 D VRR [OPlusExternalRefreshRateManager]: isPkgTfcEnable: pkgName = com.nilesecure.dev, enable = false
09-03 21:32:04.082 4124 5245 D VRR [OPlusExternalRefreshRateManager]: getTfcMinFramerate: pkgName = com.nilesecure.dev, min framerate = 0
09-03 21:32:04.113 1843 2104 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:05.541 1843 2146 D ProfileInstaller: Installing profile for com.nilesecure.dev
09-03 21:32:06.821 7538 8313 D CommonApp-155-10596: scene=COMMON pn=com.nilesecure.dev
09-03 21:32:07.209 7883 8606 W Battery : StateManager: getAppType com.nilesecure.dev, last=1756915319309
09-03 21:32:07.210 7883 8606 W Battery : ThermalControllHandler: tempLevel=[2],userMode=2,gameUserMode=-1,appType=-1,envTempType=0,appStates=[],appSwitchSafetyMode=true,split=[],float=[],full=[com.nilesecure.dev], tempGear=[2],configItemName=common_config
09-03 21:32:07.321 7538 8313 D UlPriorityPolicyForeground: match: config has not com.nilesecure.dev
09-03 21:32:13.836 7538 8313 D CommonApp-155-10596: scene=COMMON pn=com.nilesecure.dev
09-03 21:32:14.331 7538 8313 D UlPriorityPolicyForeground: match: config has not com.nilesecure.dev
09-03 21:32:20.128 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 120.00001
09-03 21:32:20.128 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:20.841 7538 8313 D CommonApp-155-10596: scene=COMMON pn=com.nilesecure.dev
09-03 21:32:21.193 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 60.000004
09-03 21:32:21.193 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:21.340 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 120.00001
09-03 21:32:21.340 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:21.341 7538 8313 D UlPriorityPolicyForeground: match: config has not com.nilesecure.dev
09-03 21:32:21.414 2532 2679 I SurfaceFlinger: [SF client] NEW(0xb40000765f12bd20) for (1843:com.nilesecure.dev)
09-03 21:32:21.416 1843 1843 D WindowManager: Add to mViews: com.android.internal.policy.DecorView{f04077e V.E...... R.....I. 0,0-0,0 alpha=1.0 viewInfo = }[MainActivity],pkg= com.nilesecure.dev
09-03 21:32:21.419 4124 7892 I WindowManager: addWindow: New client android.os.BinderProxy@b24eff4 : window=Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:21.424 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=0, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=false, flags=0, newFlags=1660944384, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:21.424 4124 7892 D CoreBackPreview: Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@27cff63, mPriority=0, mIsAnimationCallback=false}
09-03 21:32:21.424 4124 8351 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=0, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:21.425 4124 8351 V WindowManager: Relayout Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:21.425 4124 8351 I WindowManager: Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from NO_SURFACE to DRAW_PENDING; reason: resetDrawState
09-03 21:32:21.425 2532 8492 D OplusLayer: setProcInfo (26442,com.nilesecure.dev/com.nilesecure.MainActivity#26442,com.nilesecure.dev,0x5267A13F)
09-03 21:32:21.428 4124 8351 D WindowManager: NFW_findFocusedWindowIfNeeded:Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} mCurrentFocus:Window{c8e1e11 u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:21.428 4124 8351 V WindowManager: Changing focus from Window{c8e1e11 u0 com.nilesecure.dev/com.nilesecure.MainActivity} to Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity},diplayid=0
09-03 21:32:21.431 4124 4476 D SurfaceComposerClient: Transaction::apply InputWindowCommands.focusRequests timestamp=157956475483441, windowName=a8eb31d com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:21.434 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xf456271,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:21.438 4124 7892 I WindowManager: Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from DRAW_PENDING to COMMIT_DRAW_PENDING; reason: finishDrawingLocked
09-03 21:32:21.438 4124 7892 D OplusTransitionAnimationManager: skipFinishDrawingIfNeed clientRotation=0, currentRotation=0, hasFixedRotationApp=false, requestedOrientation=1, win=Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}, activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838}, currentConfig={1.0 ??mcc??mnc [en_GB] ldltr sw411dp w411dp h905dp 560dpi nrml long hdr widecg port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1440, 3168) mAppBounds=Rect(0, 0 - 1440, 3168) mMaxBounds=Rect(0, 0 - 1440, 3168) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0} s.2 fontWeightAdjustment=0mThemeChanged= 0, mThemeChangedFlags= 0, mFlipFont= 0, mScenario= 0, mAccessibleChanged= -1, mUxIconConfig= 3468921665061142593, mMaterialColor= 0, mUserId= 0, mFontUserId= 0, mFontVariationSettings= 226, mFoldingAngle = -1.0, mIconPackName= com.lknninex.enix, mDarkModeBackgroundMaxL= 0.0, mDarkModeDialogBgMaxL= 27.0, mDarkModeForegroundMinL= 100.0, mOplusConfigType= 1, mOplusChangedConfigs= 0, OpSans= -1, mBurmeseFontFlag= 2, mFlag= 0, mExtraFlag= 0, mFlexibleActivitySuitable= -1, mPuttDisplayFlag= -1}
09-03 21:32:21.439 2532 3540 D SurfaceFlinger: updateWinowInfo=1, setFocusedWindow timestamp=157956475483441, windowName=a8eb31d com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:21.439 4124 8351 I InputDispatcher: NFW_setFocusedWindow, a8eb31d com.nilesecure.dev/com.nilesecure.MainActivity on display 0, same as the previous:0
09-03 21:32:21.439 4124 4476 I WindowManager: Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from COMMIT_DRAW_PENDING to READY_TO_SHOW; reason: commitFinishDrawingLocked
09-03 21:32:21.440 4124 4476 D ActivityTaskManager: Clearing startingData for activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838} mStartingData=null mStartingSurface=null
09-03 21:32:21.440 4124 4476 I WindowManager: Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from READY_TO_SHOW to HAS_DRAWN; reason: performShowLocked
09-03 21:32:21.443 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=411, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=true, flags=0, newFlags=1660957536, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:21.444 4124 7892 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=411, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:21.445 4124 7892 V WindowManager: Relayout Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:21.449 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xf456271,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:21.452 4124 7892 D OplusTransitionAnimationManager: skipFinishDrawingIfNeed clientRotation=0, currentRotation=0, hasFixedRotationApp=false, requestedOrientation=1, win=Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}, activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838}, currentConfig={1.0 ??mcc??mnc [en_GB] ldltr sw411dp w411dp h905dp 560dpi nrml long hdr widecg port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1440, 3168) mAppBounds=Rect(0, 0 - 1440, 3168) mMaxBounds=Rect(0, 0 - 1440, 3168) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0} s.2 fontWeightAdjustment=0mThemeChanged= 0, mThemeChangedFlags= 0, mFlipFont= 0, mScenario= 0, mAccessibleChanged= -1, mUxIconConfig= 3468921665061142593, mMaterialColor= 0, mUserId= 0, mFontUserId= 0, mFontVariationSettings= 226, mFoldingAngle = -1.0, mIconPackName= com.lknninex.enix, mDarkModeBackgroundMaxL= 0.0, mDarkModeDialogBgMaxL= 27.0, mDarkModeForegroundMinL= 100.0, mOplusConfigType= 1, mOplusChangedConfigs= 0, OpSans= -1, mBurmeseFontFlag= 2, mFlag= 0, mExtraFlag= 0, mFlexibleActivitySuitable= -1, mPuttDisplayFlag= -1}
09-03 21:32:21.456 4124 7892 I InputDispatcher: updateFocusedWindow, a8eb31d com.nilesecure.dev/com.nilesecure.MainActivity on display 0, reason: Window became focusable. Previous reason: NOT_VISIBLE, result: FocusedWindows:
09-03 21:32:21.456 4124 7892 I InputDispatcher: displayId=0, name='a8eb31d com.nilesecure.dev/com.nilesecure.MainActivity'
09-03 21:32:21.460 4124 5248 D InputMethodManagerService: isSecurity: attribute.packageName = com.nilesecure.dev mCurMethodId = com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME isSecurity = false ( enable = false needShow = false inBlackList = false isExist = true )
09-03 21:32:21.460 4124 5248 I ImeTracker: com.nilesecure.dev:c56de84b: onRequestHide at ORIGIN_SERVER reason HIDE_UNSPECIFIED_WINDOW fromUser false
09-03 21:32:21.460 4124 5248 I ImeTracker: com.nilesecure.dev:c56de84b: onCancelled at PHASE_SERVER_SHOULD_HIDE
09-03 21:32:21.464 32093 32093 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1318 onStartInput(EditorInfo{EditorInfo{packageName=com.nilesecure.dev, inputType=0, inputTypeString=NULL, enableLearning=false, autoCorrection=false, autoComplete=false, imeOptions=0, privateImeOptions=null, actionName=UNSPECIFIED, actionLabel=null, initialSelStart=-1, initialSelEnd=-1, initialCapsMode=0, label=null, fieldId=0, fieldName=null, extras=Bundle[{com.oplus.im.WINDOW_MODE=1, com.oplus.im.SCENES=0}], hintText=null, hintLocales=[]}}, false)
09-03 21:32:21.465 4124 7892 W PackageConfigPersister: App-specific configuration not found for packageName: com.nilesecure.dev and userId: 0
09-03 21:32:21.765 1843 1893 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.095 1843 1843 V SystemSensorManagerExtImpl: RegisterListener bmi26x Accelerometer Non-wakeup type:1 delay:200000us by android.view.OrientationEventListener$SensorEventListenerImpl@5c0720 from com.nilesecure.dev
09-03 21:32:22.095 4124 8520 D SensorService: createSensorEventConnection packageName = android.view.OrientationEventListener, opPackageName = com.nilesecure.dev, mCurrentOperatingMode = 0, requestedMode = 0
09-03 21:32:22.099 1843 1909 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.101 1843 1909 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.102 2532 7891 I SurfaceFlinger: [SF client] NEW(0xb40000765f12d940) for (1843:com.nilesecure.dev)
09-03 21:32:22.103 1843 1909 I OplusCameraUtils: getComponentName, componentName: com.nilesecure.dev/com.nilesecure.MainActivity, packageName:com.nilesecure.dev, activityName:com.nilesecure.MainActivity
09-03 21:32:22.103 1843 1909 I CameraManager: openCameraDeviceUserAsync, use componentName: com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.103 1843 1843 D WindowManager: Add to mViews: com.android.internal.policy.DecorView{5a1cc14 V.E...... R.....I. 0,0-0,0 alpha=1.0 viewInfo = }[MainActivity],pkg= com.nilesecure.dev
09-03 21:32:22.104 1843 1909 I OplusCameraUtils: getComponentName, componentName: com.nilesecure.dev/com.nilesecure.MainActivity, packageName:com.nilesecure.dev, activityName:com.nilesecure.MainActivity
09-03 21:32:22.105 4124 7892 I WindowManager: addWindow: New client android.os.BinderProxy@86ff145 : window=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.110 3109 21532 I CameraService: CameraService::connect call (PID 1843 "com.nilesecure.dev", camera ID 2) and Camera API version 2
09-03 21:32:22.120 3109 21532 I Camera2ClientBase: Camera 2: Opened. Client: com.nilesecure.dev (PID 1843, UID 10596)
09-03 21:32:22.124 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=0, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=false, flags=0, newFlags=1660944384, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.124 4124 7892 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=0, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.124 4124 7892 V WindowManager: Relayout Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:22.125 4124 7892 I WindowManager: Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from NO_SURFACE to DRAW_PENDING; reason: resetDrawState
09-03 21:32:22.125 2532 8492 D OplusLayer: setProcInfo (26447,com.nilesecure.dev/com.nilesecure.MainActivity#26447,com.nilesecure.dev,0x5267A13F)
09-03 21:32:22.126 4124 7892 D WindowManager: NFW_findFocusedWindowIfNeeded:Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity} mCurrentFocus:Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.126 4124 7892 V WindowManager: Changing focus from Window{a8eb31d u0 com.nilesecure.dev/com.nilesecure.MainActivity} to Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity},diplayid=0
09-03 21:32:22.128 4124 8520 D CoreBackPreview: Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@165c5c0, mPriority=0, mIsAnimationCallback=false}
09-03 21:32:22.130 4124 4567 D OplusFeatureTemperatureLimitBrightness: onCameraOpened, cameraId = 2,packageId = com.nilesecure.dev
09-03 21:32:22.131 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xc7d1a36,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:22.134 4124 4476 D SurfaceComposerClient: Transaction::apply InputWindowCommands.focusRequests timestamp=157957174251878, windowName=38af09a com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.136 2257 2257 I CamX : [ALWAYS_ON ] opluscamxhwinterface.cpp:228 LoadOPPackageName() [OP_EXT] mClientPackageName:com.nilesecure.dev OPCamera: com.oplus.camera,CamEngineerMode: com.oplus.engineercamera ctsCamera:android.camera.cts ctsVerifier:com.android.cts.verifier m_isGSIBuild:0 m_isOKIBuild:0 m_isThirdAppUseAFMultiWindow 0 m_isScanner:0 m_activityName om.nilesecure.MainActivity
09-03 21:32:22.142 2532 3540 D SurfaceFlinger: updateWinowInfo=1, setFocusedWindow timestamp=157957174251878, windowName=38af09a com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.142 4124 8520 I InputDispatcher: NFW_setFocusedWindow, 38af09a com.nilesecure.dev/com.nilesecure.MainActivity on display 0, same as the previous:0
09-03 21:32:22.145 4124 8520 I WindowManager: Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from DRAW_PENDING to COMMIT_DRAW_PENDING; reason: finishDrawingLocked
09-03 21:32:22.145 4124 8520 D OplusTransitionAnimationManager: skipFinishDrawingIfNeed clientRotation=0, currentRotation=0, hasFixedRotationApp=false, requestedOrientation=1, win=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}, activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838}, currentConfig={1.0 ??mcc??mnc [en_GB] ldltr sw411dp w411dp h905dp 560dpi nrml long hdr widecg port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1440, 3168) mAppBounds=Rect(0, 0 - 1440, 3168) mMaxBounds=Rect(0, 0 - 1440, 3168) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0} s.2 fontWeightAdjustment=0mThemeChanged= 0, mThemeChangedFlags= 0, mFlipFont= 0, mScenario= 0, mAccessibleChanged= -1, mUxIconConfig= 3468921665061142593, mMaterialColor= 0, mUserId= 0, mFontUserId= 0, mFontVariationSettings= 226, mFoldingAngle = -1.0, mIconPackName= com.lknninex.enix, mDarkModeBackgroundMaxL= 0.0, mDarkModeDialogBgMaxL= 27.0, mDarkModeForegroundMinL= 100.0, mOplusConfigType= 1, mOplusChangedConfigs= 0, OpSans= -1, mBurmeseFontFlag= 2, mFlag= 0, mExtraFlag= 0, mFlexibleActivitySuitable= -1, mPuttDisplayFlag= -1}
09-03 21:32:22.146 4124 4476 I WindowManager: Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from COMMIT_DRAW_PENDING to READY_TO_SHOW; reason: commitFinishDrawingLocked
09-03 21:32:22.146 4124 4476 D ActivityTaskManager: Clearing startingData for activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838} mStartingData=null mStartingSurface=null
09-03 21:32:22.148 4124 4476 E DynamicFramerate [DynamicFrameRateManagerImpl]: setFrameRateInternalForWindow: TIMING_DO_WINDOW_ANIMATION request is = FrameRateRequest: { mUniqueID = 51360318, mVelocity = -1, mPreviousFrameRate = 0, mBindWithSC = true, mSc = Surface(name=38af09a com.nilesecure.dev/com.nilesecure.MainActivity)/@0x30fb23e, mTransaction = android.view.SurfaceControl$Transaction@ff1f89f, Type = 20102 } , frameRate 120
09-03 21:32:22.148 4124 4476 I WindowManager: Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity} state from READY_TO_SHOW to HAS_DRAWN; reason: performShowLocked
09-03 21:32:22.149 2532 7891 I SurfaceFlinger: [SF client] NEW(0xb40000765e521f00) for (1843:com.nilesecure.dev)
09-03 21:32:22.153 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=411, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=true, flags=0, newFlags=1660957536, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.154 4124 6960 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=411, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.154 4124 6960 V WindowManager: Relayout Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:22.155 2532 7891 D OplusLayer: setProcInfo (26454,SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity](BLAST)#26454,com.nilesecure.dev,0x5267A13F)
09-03 21:32:22.155 1843 1843 D SurfaceView: 150613039, SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity], layerid: 26454 createBlastSurfaceControls
09-03 21:32:22.157 4124 4478 D SurfaceAnimationRunner: onAnimationStart:Surface(name=Surface(name=38af09a com.nilesecure.dev/com.nilesecure.MainActivity)/@0x30fb23e - animation-leash of window_animation)/@0xdc17dec
09-03 21:32:22.159 4124 6960 I InputDispatcher: updateFocusedWindow, 38af09a com.nilesecure.dev/com.nilesecure.MainActivity on display 0, reason: Window became focusable. Previous reason: NOT_VISIBLE, result: FocusedWindows:
09-03 21:32:22.159 4124 6960 I InputDispatcher: displayId=0, name='38af09a com.nilesecure.dev/com.nilesecure.MainActivity'
09-03 21:32:22.160 4124 7892 D OplusStartingWindowManager: updateRecordSurfaceViewState windowToken = android.os.BinderProxy@86ff145, surfaceState = true, attachedToWindow = true, inList = false, win = Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.160 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xc7d1a36,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:22.164 1843 1843 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=411, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1440, 3168), relayoutAsync=true, flags=0, newFlags=1660957536, title=com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.164 4124 7892 D WindowManagerServiceExtImpl: extractConfigInfoAndRealFlags rotation=0, screenDp=411, residentWS:0, scenario:0, bounds:3168, serverWinBounds:Rect(0, 0 - 1440, 3168), win=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}
09-03 21:32:22.164 4124 7892 V WindowManager: Relayout Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}: viewVisibility=0, oldvis=0, req=1440x3168, vsysui=, x=0, y=0
09-03 21:32:22.165 1843 1843 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=com.nilesecure.dev/com.nilesecure.MainActivity)/@0xc7d1a36,currentBufferRatio=1.0,desiredRatio=1.0
09-03 21:32:22.166 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.168 4124 7892 D OplusTransitionAnimationManager: skipFinishDrawingIfNeed clientRotation=0, currentRotation=0, hasFixedRotationApp=false, requestedOrientation=1, win=Window{38af09a u0 com.nilesecure.dev/com.nilesecure.MainActivity}, activity=ActivityRecord{53b685c u0 com.nilesecure.dev/com.nilesecure.MainActivity t7838}, currentConfig={1.0 ??mcc??mnc [en_GB] ldltr sw411dp w411dp h905dp 560dpi nrml long hdr widecg port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1440, 3168) mAppBounds=Rect(0, 0 - 1440, 3168) mMaxBounds=Rect(0, 0 - 1440, 3168) mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0} s.2 fontWeightAdjustment=0mThemeChanged= 0, mThemeChangedFlags= 0, mFlipFont= 0, mScenario= 0, mAccessibleChanged= -1, mUxIconConfig= 3468921665061142593, mMaterialColor= 0, mUserId= 0, mFontUserId= 0, mFontVariationSettings= 226, mFoldingAngle = -1.0, mIconPackName= com.lknninex.enix, mDarkModeBackgroundMaxL= 0.0, mDarkModeDialogBgMaxL= 27.0, mDarkModeForegroundMinL= 100.0, mOplusConfigType= 1, mOplusChangedConfigs= 0, OpSans= -1, mBurmeseFontFlag= 2, mFlag= 0, mExtraFlag= 0, mFlexibleActivitySuitable= -1, mPuttDisplayFlag= -1}
09-03 21:32:22.169 4124 5248 D InputMethodManagerService: isSecurity: attribute.packageName = com.nilesecure.dev mCurMethodId = com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME isSecurity = false ( enable = false needShow = false inBlackList = false isExist = true )
09-03 21:32:22.169 4124 5248 I ImeTracker: com.nilesecure.dev:76cb0b48: onRequestHide at ORIGIN_SERVER reason HIDE_UNSPECIFIED_WINDOW fromUser false
09-03 21:32:22.169 4124 5248 I ImeTracker: com.nilesecure.dev:76cb0b48: onCancelled at PHASE_SERVER_SHOULD_HIDE
09-03 21:32:22.170 4124 8351 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:0 frontcamera:0 cameraId:2
09-03 21:32:22.172 32093 32093 I GoogleInputMethodService: GoogleInputMethodService.onStartInput():1318 onStartInput(EditorInfo{EditorInfo{packageName=com.nilesecure.dev, inputType=0, inputTypeString=NULL, enableLearning=false, autoCorrection=false, autoComplete=false, imeOptions=0, privateImeOptions=null, actionName=UNSPECIFIED, actionLabel=null, initialSelStart=-1, initialSelEnd=-1, initialCapsMode=0, label=null, fieldId=0, fieldName=null, extras=Bundle[{com.oplus.im.WINDOW_MODE=1, com.oplus.im.SCENES=0}], hintText=null, hintLocales=[]}}, false)
09-03 21:32:22.173 1843 1893 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.174 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.174 4124 7892 W PackageConfigPersister: App-specific configuration not found for packageName: com.nilesecure.dev and userId: 0
09-03 21:32:22.182 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.190 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.192 4124 8351 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:3 frontcamera:0 cameraId:2
09-03 21:32:22.199 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.207 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.215 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.223 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.232 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.240 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.248 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.256 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.265 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.273 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.281 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.290 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.298 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.306 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.314 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.323 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.331 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.339 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.347 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.356 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.364 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.364 4124 4478 D SurfaceAnimationRunner: onAnimationEnd:Surface(name=Surface(name=38af09a com.nilesecure.dev/com.nilesecure.MainActivity)/@0x30fb23e - animation-leash of window_animation)/@0xdc17dec
09-03 21:32:22.364 4124 4476 E DynamicFramerate [DynamicFrameRateManagerImpl]: setFrameRateInternalForWindow: TIMING_DO_WINDOW_ANIMATION request is = FrameRateRequest: { mUniqueID = 51360318, mVelocity = -2, mPreviousFrameRate = 120, mBindWithSC = true, mSc = Surface(name=38af09a com.nilesecure.dev/com.nilesecure.MainActivity)/@0x30fb23e, mTransaction = android.view.SurfaceControl$Transaction@ff1f89f, Type = 20102 } , frameRate 0
09-03 21:32:22.372 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.381 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.389 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.398 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.451 1843 1880 D OplusScrollToTopManager: com.nilesecure.dev/com.nilesecure.MainActivity,This com.android.internal.policy.DecorView{21cf2b6 V.E...... R.....I. 0,0-1440,3168 aid=0 alpha=1.0 viewInfo = }[MainActivity] change focus to false
09-03 21:32:22.648 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.727 1843 1905 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.729 1843 1905 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.731 1843 1905 I OplusCameraUtils: getComponentName, componentName: com.nilesecure.dev/com.nilesecure.MainActivity, packageName:com.nilesecure.dev, activityName:com.nilesecure.MainActivity
09-03 21:32:22.731 1843 1905 I CameraManager: openCameraDeviceUserAsync, use componentName: com.nilesecure.dev/com.nilesecure.MainActivity
09-03 21:32:22.731 1843 1905 I OplusCameraUtils: getComponentName, componentName: com.nilesecure.dev/com.nilesecure.MainActivity, packageName:com.nilesecure.dev, activityName:com.nilesecure.MainActivity
09-03 21:32:22.733 3109 21532 I CameraService: CameraService::connect call (PID 1843 "com.nilesecure.dev", camera ID 2) and Camera API version 2
09-03 21:32:22.733 3109 21532 I Camera2ClientBase: Camera 2: Opened. Client: com.nilesecure.dev (PID 1843, UID 10596)
09-03 21:32:22.736 4124 4567 D OplusFeatureTemperatureLimitBrightness: onCameraOpened, cameraId = 2,packageId = com.nilesecure.dev
09-03 21:32:22.737 2257 4802 I CamX : [ALWAYS_ON ] opluscamxhwinterface.cpp:228 LoadOPPackageName() [OP_EXT] mClientPackageName:com.nilesecure.dev OPCamera: com.oplus.camera,CamEngineerMode: com.oplus.engineercamera ctsCamera:android.camera.cts ctsVerifier:com.android.cts.verifier m_isGSIBuild:0 m_isOKIBuild:0 m_isThirdAppUseAFMultiWindow 0 m_isScanner:0 m_activityName om.nilesecure.MainActivity
09-03 21:32:22.742 1843 1893 I OplusCameraManagerGlobal: setClientInfo, packageName: com.nilesecure.dev, uid: 10596, pid: 1843
09-03 21:32:22.744 4124 7966 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:0 frontcamera:0 cameraId:2
09-03 21:32:22.756 2257 4802 I CamX : [ALWAYS_ON ] opluscamxhwinterface.cpp:228 LoadOPPackageName() [OP_EXT] mClientPackageName:com.nilesecure.dev OPCamera: com.oplus.camera,CamEngineerMode: com.oplus.engineercamera ctsCamera:android.camera.cts ctsVerifier:com.android.cts.verifier m_isGSIBuild:0 m_isOKIBuild:0 m_isThirdAppUseAFMultiWindow 0 m_isScanner:0 m_activityName com.nilesecure.MainActivity
09-03 21:32:22.780 3109 7680 I Camera2ClientBase: ~Camera2ClientBase: Client object's dtor for Camera Id 2 completed. Client was: com.nilesecure.dev (PID 1843, UID 10596)
09-03 21:32:22.898 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.973 1843 1905 D BufferQueueProducer: [SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity]#4(BLAST Consumer)4](id:73300000006,api:4,p:3109,c:1843) connect: api=4 producerControlledByApp=true
09-03 21:32:22.979 4124 7966 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:5 frontcamera:0 cameraId:2
09-03 21:32:22.982 4124 4476 D RefreshRate: | COURSE[ ;camera opening rateId:2 ;win name:com.nilesecure.dev/com.nilesecure.MainActivity]
09-03 21:32:22.984 4124 7966 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:1 frontcamera:0 cameraId:2
09-03 21:32:22.991 7039 7212 I SystemUi--QuickSettings: OplusSeparateQSPrivacyManager-->onPrivacyItemsChanged packageName com.nilesecure.dev, uid 10596, size: 1
09-03 21:32:22.994 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:22.997 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.038 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.047 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 60.000004
09-03 21:32:23.047 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:23.077 1843 1855 D BLASTBufferQueue: [SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity]#4](f:0,a:1) acquireNextBufferLocked size=1600x1200 mFrameNumber=1 applyTransaction=true mTimestamp=157958084355570 mPendingTransactions.size=0 graphicBufferId=7915624726544 transform=4
09-03 21:32:23.088 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.092 1843 2625 W .nilesecure.dev: ClassLoaderContext classpath element mismatch. expected=/data/app/~~IPeGQhMI-5rIjWn0OKpvbQ==/com.google.android.gms-cyQoDj1OpmTjVrfGNoNBlQ==/base.apk, found=/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk (DLC[];PCL[/data/app/~~IPeGQhMI-5rIjWn0OKpvbQ==/com.google.android.gms-cyQoDj1OpmTjVrfGNoNBlQ==/base.apk*2043734926]{PCL[/system/framework/org.apache.http.legacy.jar*579360325]#PCL[/system/framework/com.android.media.remotedisplay.jar*2042759013]#PCL[/system/framework/com.android.location.provider.jar*3414091812]#PCL[/system_ext/framework/androidx.window.extensions.jar*4184533965]#PCL[/system_ext/framework/androidx.window.sidecar.jar*2740161290]} | DLC[];PCL[/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk*1540712254]{PCL[/system/system_ext/framework/androidx.camera.extensions.impl.jar*2134340761]})
09-03 21:32:23.106 1843 2625 W .nilesecure.dev: ClassLoaderContext classpath element checksum mismatch. expected=2043734926, found=1540712254 (DLC[];PCL[base.apk*2043734926]{PCL[/system/framework/org.apache.http.legacy.jar*579360325]#PCL[/system/framework/com.android.media.remotedisplay.jar*2042759013]#PCL[/system/framework/com.android.location.provider.jar*3414091812]#PCL[/system_ext/framework/androidx.window.extensions.jar*4184533965]#PCL[/system_ext/framework/androidx.window.sidecar.jar*2740161290]} | DLC[];PCL[/data/app/~~94G9_7VXf_bwS7VvTtcz1w==/com.nilesecure.dev-pdpmFuTQB1UAInpCPOuqcw==/base.apk*1540712254]{PCL[/system/system_ext/framework/androidx.camera.extensions.impl.jar*2134340761]})
09-03 21:32:23.121 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.137 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.148 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.154 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.163 1843 1880 D OplusScrollToTopManager: com.nilesecure.dev/com.nilesecure.MainActivity,This com.android.internal.policy.DecorView{f04077e V.E...... R....... 0,0-1440,3168 aid=1073741824 alpha=1.0 viewInfo = }[MainActivity] change focus to false
09-03 21:32:23.168 1843 1880 D OplusScrollToTopManager: com.nilesecure.dev/com.nilesecure.MainActivity,This com.android.internal.policy.DecorView{5a1cc14 V.E...... R....... 0,0-1440,3168 aid=1073741825 alpha=1.0 viewInfo = }[MainActivity] change focus to true
09-03 21:32:23.197 7538 8300 I VoiceCallScene: MSG_CHK_VIDEO_STATE : uid = 10596, pkg = com.nilesecure.dev, mVoiceCallUid = 10367, mVoiceCallPkg = com.whatsapp
09-03 21:32:23.404 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.654 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:23.904 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.155 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.406 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.656 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.911 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.959 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.976 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:24.992 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:25.161 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:25.411 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:25.663 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:25.743 7538 8300 I VoiceCallScene: MSG_CHK_VIDEO_STATE : uid = 10596, pkg = com.nilesecure.dev, mVoiceCallUid = 10367, mVoiceCallPkg = com.whatsapp
09-03 21:32:25.912 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:26.131 4124 4476 D RefreshRate: | COURSE[; Win preferred rateId=0, appReqFirst=false, data= RateData{} ;win name:com.nilesecure.dev/com.nilesecure.MainActivity]
09-03 21:32:26.131 7039 7212 I SystemUi--QuickSettings: OplusSeparateQSPrivacyManager-->onPrivacyItemsChanged packageName com.nilesecure.dev, uid 10596, size: 1
09-03 21:32:26.131 4124 4890 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:2 frontcamera:0 cameraId:2
09-03 21:32:26.140 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:26.162 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:26.164 2361 2361 I CameraMidasService: setPowerFactor powerfactor.packageName is com.nilesecure.dev!
09-03 21:32:26.170 1843 1908 D BufferQueueProducer: [SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity]#4(BLAST Consumer)4](id:73300000006,api:4,p:3109,c:1843) disconnect: api 4
09-03 21:32:26.172 4124 4890 I OplusCameraStateBroadcast: notifyCameraState packageName:com.nilesecure.dev cameraState:3 frontcamera:0 cameraId:2
09-03 21:32:26.172 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:26.206 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 120.00001
09-03 21:32:26.206 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:26.413 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:26.762 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:27.017 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:27.036 2532 2532 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:27.067 4124 4583 D VRR [OPlusGameStatusManager]: setLTMStatus false curPkgName: com.nilesecure.dev curr status: false HeartStop: false HeartStopFromTGPA: false ActiveFPS: 60.000004
09-03 21:32:27.067 4124 4583 D VRR [OPlusGameStatusManager]: updateGameAccelerationStatus pkgName: com.nilesecure.dev mOSyncFeatureSwitch: false mIsGamePolicy: false mHeartStop: false mHasFlickerRisk: false mForceAcceleration: false mToastReady: false enable: false
09-03 21:32:27.178 7538 8300 I VoiceCallScene: MSG_CHK_VIDEO_STATE : uid = 10596, pkg = com.nilesecure.dev, mVoiceCallUid = 10367, mVoiceCallPkg = com.whatsapp
09-03 21:32:27.268 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:27.636 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:27.851 7538 8313 D CommonApp-155-10596: scene=COMMON pn=com.nilesecure.dev
09-03 21:32:28.117 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:28.351 7538 8313 D UlPriorityPolicyForeground: match: config has not com.nilesecure.dev
09-03 21:32:28.367 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:28.618 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:29.099 2532 3537 W OplusHecate: layer[26454] SurfaceView[com.nilesecure.dev/com.nilesecure.MainActivity](BLAST)#26454 didn't commit buffer within 3000ms, ownerPid 1843
09-03 21:32:29.575 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:30.601 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:33.580 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:33.830 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:34.860 7538 8313 D CommonApp-155-10596: scene=COMMON pn=com.nilesecure.dev
09-03 21:32:35.359 7538 8313 D UlPriorityPolicyForeground: match: config has not com.nilesecure.dev
09-03 21:32:35.600 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:36.793 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:37.586 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
09-03 21:32:38.001 2532 3497 D CompositionEngine: Layer: com.nilesecure.dev/com.nilesecure.MainActivity#26447 had an out of bounds transparent region
Camera Device
{
"formats": [],
"sensorOrientation": "landscape-left",
"hardwareLevel": "full",
"maxZoom": 10,
"minZoom": 1,
"maxExposure": 18,
"supportsLowLightBoost": false,
"neutralZoom": 1,
"physicalDevices": [
"wide-angle-camera"
],
"supportsFocus": true,
"supportsRawCapture": false,
"isMultiCam": false,
"minFocusDistance": 13.000000371932993,
"minExposure": -18,
"name": "2 (BACK) androidx.camera.camera2",
"hasFlash": true,
"hasTorch": true,
"position": "back",
"id": "2"
}
Device
One Plus 12, Android 15
VisionCamera Version
4.7.2
Can you reproduce this issue in the VisionCamera Example app?
Yes, I can reproduce the same issue in the Example app here
Additional information
- [ ] I am using Expo
- [ ] I have enabled Frame Processors (react-native-worklets-core)
- [x] I have read the Troubleshooting Guide
- [x] I agree to follow this project's Code of Conduct
- [x] I searched for similar issues in this repository and found none.
Guten Tag, Hans here.
[!NOTE] New features, bugfixes, updates and other improvements are all handled mostly by
@mrousavyin his free time. To support@mrousavy, please consider 💖 sponsoring him on GitHub 💖. Sponsored issues will be prioritized.