Before, Frame Processors ran on a separate Thread.
After, Frame Processors run fully synchronous and always at the same FPS as the Camera.
Two new functions have been introduced:
* `runAtTargetFps(fps: number, func: () => void)`: Runs the given code as often as the given `fps`, effectively throttling it's calls.
* `runAsync(frame: Frame, func: () => void)`: Runs the given function on a separate Thread for Frame Processing. A strong reference to the Frame is held as long as the function takes to execute.
You can use `runAtTargetFps` to throttle calls to a specific API (e.g. if your Camera is running at 60 FPS, but you only want to run face detection at ~25 FPS, use `runAtTargetFps(25, ...)`.)
You can use `runAsync` to run a heavy algorithm asynchronous, so that the Camera is not blocked while your algorithm runs. This is useful if your main sync processor draws something, and your async processor is doing some image analysis on the side. 
You can also combine both functions.
Examples:
```js
const frameProcessor = useFrameProcessor((frame) => {
  'worklet'
  console.log("I'm running at 60 FPS!")
}, [])
```
```js
const frameProcessor = useFrameProcessor((frame) => {
  'worklet'
  console.log("I'm running at 60 FPS!")
  runAtTargetFps(10, () => {
    'worklet'
    console.log("I'm running at 10 FPS!")
  })
}, [])
```
```js
const frameProcessor = useFrameProcessor((frame) => {
  'worklet'
  console.log("I'm running at 60 FPS!")
  runAsync(frame, () => {
    'worklet'
    console.log("I'm running on another Thread, I can block for longer!")
  })
}, [])
```
```js
const frameProcessor = useFrameProcessor((frame) => {
  'worklet'
  console.log("I'm running at 60 FPS!")
  runAtTargetFps(10, () => {
    'worklet'
    runAsync(frame, () => {
      'worklet'
      console.log("I'm running on another Thread at 10 FPS, I can block for longer!")
    })
  })
}, [])
```
		
	
		
			
				
	
	
		
			619 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			619 lines
		
	
	
		
			21 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
PODS:
 | 
						|
  - boost (1.76.0)
 | 
						|
  - DoubleConversion (1.1.6)
 | 
						|
  - FBLazyVector (0.71.3)
 | 
						|
  - FBReactNativeSpec (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTRequired (= 0.71.3)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Core (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - fmt (6.2.1)
 | 
						|
  - glog (0.3.5)
 | 
						|
  - hermes-engine (0.71.3):
 | 
						|
    - hermes-engine/Pre-built (= 0.71.3)
 | 
						|
  - hermes-engine/Pre-built (0.71.3)
 | 
						|
  - libevent (2.1.12)
 | 
						|
  - RCT-Folly (2021.07.22.00):
 | 
						|
    - boost
 | 
						|
    - DoubleConversion
 | 
						|
    - fmt (~> 6.2.1)
 | 
						|
    - glog
 | 
						|
    - RCT-Folly/Default (= 2021.07.22.00)
 | 
						|
  - RCT-Folly/Default (2021.07.22.00):
 | 
						|
    - boost
 | 
						|
    - DoubleConversion
 | 
						|
    - fmt (~> 6.2.1)
 | 
						|
    - glog
 | 
						|
  - RCT-Folly/Futures (2021.07.22.00):
 | 
						|
    - boost
 | 
						|
    - DoubleConversion
 | 
						|
    - fmt (~> 6.2.1)
 | 
						|
    - glog
 | 
						|
    - libevent
 | 
						|
  - RCTRequired (0.71.3)
 | 
						|
  - RCTTypeSafety (0.71.3):
 | 
						|
    - FBLazyVector (= 0.71.3)
 | 
						|
    - RCTRequired (= 0.71.3)
 | 
						|
    - React-Core (= 0.71.3)
 | 
						|
  - React (0.71.3):
 | 
						|
    - React-Core (= 0.71.3)
 | 
						|
    - React-Core/DevSupport (= 0.71.3)
 | 
						|
    - React-Core/RCTWebSocket (= 0.71.3)
 | 
						|
    - React-RCTActionSheet (= 0.71.3)
 | 
						|
    - React-RCTAnimation (= 0.71.3)
 | 
						|
    - React-RCTBlob (= 0.71.3)
 | 
						|
    - React-RCTImage (= 0.71.3)
 | 
						|
    - React-RCTLinking (= 0.71.3)
 | 
						|
    - React-RCTNetwork (= 0.71.3)
 | 
						|
    - React-RCTSettings (= 0.71.3)
 | 
						|
    - React-RCTText (= 0.71.3)
 | 
						|
    - React-RCTVibration (= 0.71.3)
 | 
						|
  - React-callinvoker (0.71.3)
 | 
						|
  - React-Codegen (0.71.3):
 | 
						|
    - FBReactNativeSpec
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly
 | 
						|
    - RCTRequired
 | 
						|
    - RCTTypeSafety
 | 
						|
    - React-Core
 | 
						|
    - React-jsi
 | 
						|
    - React-jsiexecutor
 | 
						|
    - ReactCommon/turbomodule/bridging
 | 
						|
    - ReactCommon/turbomodule/core
 | 
						|
  - React-Core (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default (= 0.71.3)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/CoreModulesHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/Default (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/DevSupport (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default (= 0.71.3)
 | 
						|
    - React-Core/RCTWebSocket (= 0.71.3)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-jsinspector (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTActionSheetHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTAnimationHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTBlobHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTImageHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTLinkingHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTNetworkHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTSettingsHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTTextHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTVibrationHeaders (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-Core/RCTWebSocket (0.71.3):
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Core/Default (= 0.71.3)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-hermes
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - Yoga
 | 
						|
  - React-CoreModules (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/CoreModulesHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-RCTBlob
 | 
						|
    - React-RCTImage (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-cxxreact (0.71.3):
 | 
						|
    - boost (= 1.76.0)
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-callinvoker (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-jsinspector (= 0.71.3)
 | 
						|
    - React-logger (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
    - React-runtimeexecutor (= 0.71.3)
 | 
						|
  - React-hermes (0.71.3):
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCT-Folly/Futures (= 2021.07.22.00)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-jsi
 | 
						|
    - React-jsiexecutor (= 0.71.3)
 | 
						|
    - React-jsinspector (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
  - React-jsi (0.71.3):
 | 
						|
    - boost (= 1.76.0)
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
  - React-jsiexecutor (0.71.3):
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
  - React-jsinspector (0.71.3)
 | 
						|
  - React-logger (0.71.3):
 | 
						|
    - glog
 | 
						|
  - react-native-blur (4.3.0):
 | 
						|
    - React-Core
 | 
						|
  - react-native-cameraroll (5.2.3):
 | 
						|
    - React-Core
 | 
						|
  - react-native-safe-area-context (4.5.0):
 | 
						|
    - RCT-Folly
 | 
						|
    - RCTRequired
 | 
						|
    - RCTTypeSafety
 | 
						|
    - React-Core
 | 
						|
    - ReactCommon/turbomodule/core
 | 
						|
  - react-native-slider (4.4.2):
 | 
						|
    - React-Core
 | 
						|
  - react-native-video (5.2.1):
 | 
						|
    - React-Core
 | 
						|
    - react-native-video/Video (= 5.2.1)
 | 
						|
  - react-native-video/Video (5.2.1):
 | 
						|
    - React-Core
 | 
						|
  - react-native-worklets (0.1.0):
 | 
						|
    - React
 | 
						|
    - React-callinvoker
 | 
						|
    - React-Core
 | 
						|
  - React-perflogger (0.71.3)
 | 
						|
  - React-RCTActionSheet (0.71.3):
 | 
						|
    - React-Core/RCTActionSheetHeaders (= 0.71.3)
 | 
						|
  - React-RCTAnimation (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTAnimationHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTAppDelegate (0.71.3):
 | 
						|
    - RCT-Folly
 | 
						|
    - RCTRequired
 | 
						|
    - RCTTypeSafety
 | 
						|
    - React-Core
 | 
						|
    - ReactCommon/turbomodule/core
 | 
						|
  - React-RCTBlob (0.71.3):
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTBlobHeaders (= 0.71.3)
 | 
						|
    - React-Core/RCTWebSocket (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-RCTNetwork (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTImage (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTImageHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-RCTNetwork (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTLinking (0.71.3):
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTLinkingHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTNetwork (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTNetworkHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTSettings (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - RCTTypeSafety (= 0.71.3)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTSettingsHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-RCTText (0.71.3):
 | 
						|
    - React-Core/RCTTextHeaders (= 0.71.3)
 | 
						|
  - React-RCTVibration (0.71.3):
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-Codegen (= 0.71.3)
 | 
						|
    - React-Core/RCTVibrationHeaders (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - ReactCommon/turbomodule/core (= 0.71.3)
 | 
						|
  - React-runtimeexecutor (0.71.3):
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
  - ReactCommon/turbomodule/bridging (0.71.3):
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-callinvoker (= 0.71.3)
 | 
						|
    - React-Core (= 0.71.3)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-logger (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
  - ReactCommon/turbomodule/core (0.71.3):
 | 
						|
    - DoubleConversion
 | 
						|
    - glog
 | 
						|
    - hermes-engine
 | 
						|
    - RCT-Folly (= 2021.07.22.00)
 | 
						|
    - React-callinvoker (= 0.71.3)
 | 
						|
    - React-Core (= 0.71.3)
 | 
						|
    - React-cxxreact (= 0.71.3)
 | 
						|
    - React-jsi (= 0.71.3)
 | 
						|
    - React-logger (= 0.71.3)
 | 
						|
    - React-perflogger (= 0.71.3)
 | 
						|
  - RNGestureHandler (2.9.0):
 | 
						|
    - React-Core
 | 
						|
  - RNReanimated (3.0.0-rc.10):
 | 
						|
    - DoubleConversion
 | 
						|
    - FBLazyVector
 | 
						|
    - FBReactNativeSpec
 | 
						|
    - glog
 | 
						|
    - RCT-Folly
 | 
						|
    - RCTRequired
 | 
						|
    - RCTTypeSafety
 | 
						|
    - React-callinvoker
 | 
						|
    - React-Core
 | 
						|
    - React-Core/DevSupport
 | 
						|
    - React-Core/RCTWebSocket
 | 
						|
    - React-CoreModules
 | 
						|
    - React-cxxreact
 | 
						|
    - React-jsi
 | 
						|
    - React-jsiexecutor
 | 
						|
    - React-jsinspector
 | 
						|
    - React-RCTActionSheet
 | 
						|
    - React-RCTAnimation
 | 
						|
    - React-RCTBlob
 | 
						|
    - React-RCTImage
 | 
						|
    - React-RCTLinking
 | 
						|
    - React-RCTNetwork
 | 
						|
    - React-RCTSettings
 | 
						|
    - React-RCTText
 | 
						|
    - ReactCommon/turbomodule/core
 | 
						|
    - Yoga
 | 
						|
  - RNScreens (3.20.0):
 | 
						|
    - React-Core
 | 
						|
    - React-RCTImage
 | 
						|
  - RNStaticSafeAreaInsets (2.2.0):
 | 
						|
    - React-Core
 | 
						|
  - RNVectorIcons (9.2.0):
 | 
						|
    - React-Core
 | 
						|
  - VisionCamera (2.15.4):
 | 
						|
    - React
 | 
						|
    - React-callinvoker
 | 
						|
    - React-Core
 | 
						|
    - react-native-worklets
 | 
						|
  - Yoga (1.14.0)
 | 
						|
 | 
						|
DEPENDENCIES:
 | 
						|
  - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
 | 
						|
  - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
 | 
						|
  - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
 | 
						|
  - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
 | 
						|
  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
 | 
						|
  - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
 | 
						|
  - libevent (~> 2.1.12)
 | 
						|
  - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
 | 
						|
  - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
 | 
						|
  - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
 | 
						|
  - React (from `../node_modules/react-native/`)
 | 
						|
  - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
 | 
						|
  - React-Codegen (from `build/generated/ios`)
 | 
						|
  - React-Core (from `../node_modules/react-native/`)
 | 
						|
  - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
 | 
						|
  - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
 | 
						|
  - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
 | 
						|
  - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
 | 
						|
  - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
 | 
						|
  - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
 | 
						|
  - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
 | 
						|
  - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
 | 
						|
  - "react-native-blur (from `../node_modules/@react-native-community/blur`)"
 | 
						|
  - "react-native-cameraroll (from `../node_modules/@react-native-camera-roll/camera-roll`)"
 | 
						|
  - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
 | 
						|
  - "react-native-slider (from `../node_modules/@react-native-community/slider`)"
 | 
						|
  - react-native-video (from `../node_modules/react-native-video`)
 | 
						|
  - react-native-worklets (from `../node_modules/react-native-worklets`)
 | 
						|
  - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
 | 
						|
  - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
 | 
						|
  - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
 | 
						|
  - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
 | 
						|
  - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
 | 
						|
  - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
 | 
						|
  - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
 | 
						|
  - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
 | 
						|
  - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
 | 
						|
  - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
 | 
						|
  - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
 | 
						|
  - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
 | 
						|
  - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
 | 
						|
  - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
 | 
						|
  - RNReanimated (from `../node_modules/react-native-reanimated`)
 | 
						|
  - RNScreens (from `../node_modules/react-native-screens`)
 | 
						|
  - RNStaticSafeAreaInsets (from `../node_modules/react-native-static-safe-area-insets`)
 | 
						|
  - RNVectorIcons (from `../node_modules/react-native-vector-icons`)
 | 
						|
  - VisionCamera (from `../..`)
 | 
						|
  - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
 | 
						|
 | 
						|
SPEC REPOS:
 | 
						|
  trunk:
 | 
						|
    - fmt
 | 
						|
    - libevent
 | 
						|
 | 
						|
EXTERNAL SOURCES:
 | 
						|
  boost:
 | 
						|
    :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
 | 
						|
  DoubleConversion:
 | 
						|
    :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
 | 
						|
  FBLazyVector:
 | 
						|
    :path: "../node_modules/react-native/Libraries/FBLazyVector"
 | 
						|
  FBReactNativeSpec:
 | 
						|
    :path: "../node_modules/react-native/React/FBReactNativeSpec"
 | 
						|
  glog:
 | 
						|
    :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
 | 
						|
  hermes-engine:
 | 
						|
    :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
 | 
						|
  RCT-Folly:
 | 
						|
    :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
 | 
						|
  RCTRequired:
 | 
						|
    :path: "../node_modules/react-native/Libraries/RCTRequired"
 | 
						|
  RCTTypeSafety:
 | 
						|
    :path: "../node_modules/react-native/Libraries/TypeSafety"
 | 
						|
  React:
 | 
						|
    :path: "../node_modules/react-native/"
 | 
						|
  React-callinvoker:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/callinvoker"
 | 
						|
  React-Codegen:
 | 
						|
    :path: build/generated/ios
 | 
						|
  React-Core:
 | 
						|
    :path: "../node_modules/react-native/"
 | 
						|
  React-CoreModules:
 | 
						|
    :path: "../node_modules/react-native/React/CoreModules"
 | 
						|
  React-cxxreact:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/cxxreact"
 | 
						|
  React-hermes:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/hermes"
 | 
						|
  React-jsi:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/jsi"
 | 
						|
  React-jsiexecutor:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
 | 
						|
  React-jsinspector:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/jsinspector"
 | 
						|
  React-logger:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/logger"
 | 
						|
  react-native-blur:
 | 
						|
    :path: "../node_modules/@react-native-community/blur"
 | 
						|
  react-native-cameraroll:
 | 
						|
    :path: "../node_modules/@react-native-camera-roll/camera-roll"
 | 
						|
  react-native-safe-area-context:
 | 
						|
    :path: "../node_modules/react-native-safe-area-context"
 | 
						|
  react-native-slider:
 | 
						|
    :path: "../node_modules/@react-native-community/slider"
 | 
						|
  react-native-video:
 | 
						|
    :path: "../node_modules/react-native-video"
 | 
						|
  react-native-worklets:
 | 
						|
    :path: "../node_modules/react-native-worklets"
 | 
						|
  React-perflogger:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/reactperflogger"
 | 
						|
  React-RCTActionSheet:
 | 
						|
    :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
 | 
						|
  React-RCTAnimation:
 | 
						|
    :path: "../node_modules/react-native/Libraries/NativeAnimation"
 | 
						|
  React-RCTAppDelegate:
 | 
						|
    :path: "../node_modules/react-native/Libraries/AppDelegate"
 | 
						|
  React-RCTBlob:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Blob"
 | 
						|
  React-RCTImage:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Image"
 | 
						|
  React-RCTLinking:
 | 
						|
    :path: "../node_modules/react-native/Libraries/LinkingIOS"
 | 
						|
  React-RCTNetwork:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Network"
 | 
						|
  React-RCTSettings:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Settings"
 | 
						|
  React-RCTText:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Text"
 | 
						|
  React-RCTVibration:
 | 
						|
    :path: "../node_modules/react-native/Libraries/Vibration"
 | 
						|
  React-runtimeexecutor:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
 | 
						|
  ReactCommon:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon"
 | 
						|
  RNGestureHandler:
 | 
						|
    :path: "../node_modules/react-native-gesture-handler"
 | 
						|
  RNReanimated:
 | 
						|
    :path: "../node_modules/react-native-reanimated"
 | 
						|
  RNScreens:
 | 
						|
    :path: "../node_modules/react-native-screens"
 | 
						|
  RNStaticSafeAreaInsets:
 | 
						|
    :path: "../node_modules/react-native-static-safe-area-insets"
 | 
						|
  RNVectorIcons:
 | 
						|
    :path: "../node_modules/react-native-vector-icons"
 | 
						|
  VisionCamera:
 | 
						|
    :path: "../.."
 | 
						|
  Yoga:
 | 
						|
    :path: "../node_modules/react-native/ReactCommon/yoga"
 | 
						|
 | 
						|
SPEC CHECKSUMS:
 | 
						|
  boost: 57d2868c099736d80fcd648bf211b4431e51a558
 | 
						|
  DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
 | 
						|
  FBLazyVector: 60195509584153283780abdac5569feffb8f08cc
 | 
						|
  FBReactNativeSpec: 9c191fb58d06dc05ab5559a5505fc32139e9e4a2
 | 
						|
  fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
 | 
						|
  glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
 | 
						|
  hermes-engine: 38bfe887e456b33b697187570a08de33969f5db7
 | 
						|
  libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
 | 
						|
  RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
 | 
						|
  RCTRequired: bec48f07daf7bcdc2655a0cde84e07d24d2a9e2a
 | 
						|
  RCTTypeSafety: 171394eebacf71e1cfad79dbfae7ee8fc16ca80a
 | 
						|
  React: d7433ccb6a8c36e4cbed59a73c0700fc83c3e98a
 | 
						|
  React-callinvoker: 15f165009bd22ae829b2b600e50bcc98076ce4b8
 | 
						|
  React-Codegen: b5910000eaf1e0c2f47d29be6f82f5f1264420d7
 | 
						|
  React-Core: b6f2f78d580a90b83fd7b0d1c6911c799f6eac82
 | 
						|
  React-CoreModules: e0cbc1a4f4f3f60e23c476fef7ab37be363ea8c1
 | 
						|
  React-cxxreact: c87f3f124b2117d00d410b35f16c2257e25e50fa
 | 
						|
  React-hermes: c64ca6bdf16a7069773103c9bedaf30ec90ab38f
 | 
						|
  React-jsi: 39729361645568e238081b3b3180fbad803f25a4
 | 
						|
  React-jsiexecutor: 515b703d23ffadeac7687bc2d12fb08b90f0aaa1
 | 
						|
  React-jsinspector: 9f7c9137605e72ca0343db4cea88006cb94856dd
 | 
						|
  React-logger: 957e5dc96d9dbffc6e0f15e0ee4d2b42829ff207
 | 
						|
  react-native-blur: 50c9feabacbc5f49b61337ebc32192c6be7ec3c3
 | 
						|
  react-native-cameraroll: 5b25d0be40185d02e522bf2abf8a1ba4e8faa107
 | 
						|
  react-native-safe-area-context: 39c2d8be3328df5d437ac1700f4f3a4f75716acc
 | 
						|
  react-native-slider: 33b8d190b59d4f67a541061bb91775d53d617d9d
 | 
						|
  react-native-video: c26780b224543c62d5e1b2a7244a5cd1b50e8253
 | 
						|
  react-native-worklets: c7576ad4ad0f030ff41e8d74ad0077c96054a6c1
 | 
						|
  React-perflogger: af8a3d31546077f42d729b949925cc4549f14def
 | 
						|
  React-RCTActionSheet: 57cc5adfefbaaf0aae2cf7e10bccd746f2903673
 | 
						|
  React-RCTAnimation: 11c61e94da700c4dc915cf134513764d87fc5e2b
 | 
						|
  React-RCTAppDelegate: c3980adeaadcfd6cb495532e928b36ac6db3c14a
 | 
						|
  React-RCTBlob: ccc5049d742b41971141415ca86b83b201495695
 | 
						|
  React-RCTImage: 7a9226b0944f1e76e8e01e35a9245c2477cdbabb
 | 
						|
  React-RCTLinking: bbe8cc582046a9c04f79c235b73c93700263e8b4
 | 
						|
  React-RCTNetwork: fc2ca322159dc54e06508d4f5c3e934da63dc013
 | 
						|
  React-RCTSettings: f1e9db2cdf946426d3f2b210e4ff4ce0f0d842ef
 | 
						|
  React-RCTText: 1c41dd57e5d742b1396b4eeb251851ce7ff0fca1
 | 
						|
  React-RCTVibration: 5199a180d04873366a83855de55ac33ce60fe4d5
 | 
						|
  React-runtimeexecutor: 7bf0dafc7b727d93c8cb94eb00a9d3753c446c3e
 | 
						|
  ReactCommon: 6f65ea5b7d84deb9e386f670dd11ce499ded7b40
 | 
						|
  RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39
 | 
						|
  RNReanimated: fbc356493970e3acddc15586b1bccb5eab3ff1ec
 | 
						|
  RNScreens: 218801c16a2782546d30bd2026bb625c0302d70f
 | 
						|
  RNStaticSafeAreaInsets: 055ddbf5e476321720457cdaeec0ff2ba40ec1b8
 | 
						|
  RNVectorIcons: fcc2f6cb32f5735b586e66d14103a74ce6ad61f8
 | 
						|
  VisionCamera: 312151eb95370d1d764720de3b7dad33d8c7fb40
 | 
						|
  Yoga: 5ed1699acbba8863755998a4245daa200ff3817b
 | 
						|
 | 
						|
PODFILE CHECKSUM: d53724fe402c2547f1dd1cc571bbe77d9820e636
 | 
						|
 | 
						|
COCOAPODS: 1.11.3
 |