bglgwyng
bglgwyng
@guineveresaenger https://github.com/bglgwyng/pulumi-k8s-report I made a smaller one that can reproduce the same behavior.
I have this issue after upgrading RN to 0.70.1 My XCode version is 13.4.1. I made a repo to reproduce the issue. https://github.com/bglgwyng/FrameProcessorExample2 In my case, `scanCodes` from `vision-camera-code-scanner` works...
@Neklan You can apply that patch with the following patch script and [patch-package](https://www.npmjs.com/package/patch-package), ```diff diff --git a/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h b/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h index a2ccdcb4..7c9690e0 100644 --- a/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h +++ b/node_modules/react-native-vision-camera/ios/Frame Processor/FrameProcessorPlugin.h @@...
The workaround mentioned may look like this. ```typescript new aws.cloudwatch.EventRuleEventSubscription('eventRuleEventSubscription', eventRule, lambda, {}, { transformations: [ (x) => { if (x.type === 'aws:cloudwatch/eventTarget:EventTarget') { x.props.eventBusName = eventBusName; } return x;...
@danielrbradley Thanks. Your solution works well with `default` event bus. However, I tried a event rule with a partner event bus like below and it failed. ``` const eventRule =...
I saw the following error message by putting a completely wrong value as the event rule name argument. ``` * unexpected format for ID (arn:aws:events:ap-northeast-2:751870429738:event-bus/aws.partner/mongodb.com/stitch.trigger/632fed9d9d9500795e56fd9c), expected EVENTBUSNAME/RULENAME or RULENAME ```...
Is this issue resolved? I just tried `use_frameworks!` with [email protected] but it failed. The error message was the same.
I tried a very similar workaround here https://github.com/ICoi/VisionCameraExample/blob/main/ios/Podfile#L10 with what @krisidmisso suggested. The build succeded, but I got the following error message ``` ERROR frame-processor/unavailable: Frame Processors are not enabled....
@hb-webdev Sorry. I shared a private one. You can see this one https://github.com/bglgwyng/VisionCameraExample. The latest commit also solved the frame processor issue by setting RNReanimated as static. I haven't tested...
https://github.com/bglgwyng/FirebaseExample I tried firebase + vision camera + frame processor here. It works fine. Firestore client is ok and the camera is too. @mrousavy My workaround was just setting `RNAnimated`...