Roman C
Roman C
Same problem for me. Crash on android after upgrading to react-navigation v6 Fixed on @react-native-community/blur : 3.6.0 by doing : ``` const [viewRef, setViewRef] = useState(null); const messageRef = useRef(null);...
Having a similar problem with OnePlus 5T. When using `useSafeAreaInsets` the bottom value is equal to 0, but when using the `initialWindowMetrics` object, insets.bottom is 48, but the values of...
I find out that by modifying this line for Android : ``` val image = InputImage.fromMediaImage(mediaImage, frame.imageInfo.rotationDegrees) // frame.imageInfo.rotationDegrees = 90 ``` To : ``` val image = InputImage.fromMediaImage(mediaImage, 0)...
If anyone is experiencing the same problem, I solved it by patching this package with : ``` android:exported="true">
I had the same issue, and following the troubleshooting steps from the doc fixed the problem. Especially : ``` ./android/gradlew clean rm -rf android/.gradle android/.idea android/app/build android/build rm -rf package-lock.json...