Marc Rousavy
Marc Rousavy
Let me quickly explain the problems: ## Problem A JSI_LIB (`libjsi.so`) is only available in React Native 0.65 (or 66?) and higher. VisionCamera relies on that, so either upgrade to...
Hey! Hmm, interesting. Are you maybe using React Freeze? Try doing `enableFreeze(false)` and see if that (temporarily) fixes the issue
UIKit works a bit differently, `deinit` is not a safe way to stop the camera session here because the view is never actually de-allocated. Just because you don't see it...
Hi, you didn't post an error message. Only warnings from the log are here (`w:`). Please post full output.
Ah my bad I just didn't see the error correctly. You're right, this is available only on newer RN versions
That is a RN version error, are you on 0.67?
Hey! There has to be an error in `adb logcat`, make sure to run `adb logcat` **before launching the app**, then launching the app, and after the crash copy every...
Incomplete issue. There is literally nothing for me to reproduce, and I have no idea what you're doing. > i save frame to file, and it is how it look...
hm, are we sure that this is a YUV buffer?
Try this one: ```java private Bitmap toBitmap(Image image) { Image.Plane[] planes = image.getPlanes(); ByteBuffer yBuffer = planes[0].getBuffer(); ByteBuffer uBuffer = planes[1].getBuffer(); ByteBuffer vBuffer = planes[2].getBuffer(); int ySize = yBuffer.remaining(); int...