Jose
Jose
@lander854 solution's works fine! **But** it does not allow to use other buttons correctly (volume, full screen mode) because when pressing them the pressable activates and pauses the video. Or...
`Animated.spring()` must also include `UseNativeDriver: false` 
I needed this option fast, so what I did was modify `React.createElement(reactNative.ScrollView)` by `React.createElement(reactNative.View)`. It's a quick solution, I don't think it's the best. If you read the code a...
On Android, this is due to the use of PostDelayed(), It's cancelled after some time in the background or if the main thread is destroyed. **AlarmManager** could be used to...
Same issue after upgrading from react-native 0.71.7 to 0.73.8 ``` "@react-navigation/material-top-tabs": "6.6.13", "@react-navigation/native": "6.1.17", "@react-navigation/native-stack": "6.9.26", ```
Same issue here. It's due to this new [code:](https://github.com/gorhom/react-native-bottom-sheet/blob/master/src/components/bottomSheet/BottomSheet.tsx#L1870) ``` // BottomSheet.tsx const DraggableView = enableContentPanningGesture ? BottomSheetDraggableView : Animated.View; {children} ``` I've been looking for a solution but without...
I think that Notifee's AndroidManifest should not include: `` Since the foreground service could have other types and the resulting AndroidManifest would still have this permission
Yes `tools:replace="android:foregroundServiceType"` will replace the types, and it's working fine. But look at the following case. Only **Location** type is needed, so user add to his AndroidManifest: Permission request: ``...
Same error here, after dependencies upgrade: - react-native: `0.76.9` to `0.77.3` - New architecture: `disabled` - react-native-vision-camera: `4.6.4` to `4.7.1` EDIT: I only notice this crash when force reload from...
@mohitGraffers @mannoeu For me, the solution was downgrade to v4.7.0. I haven't seen any further problems. Development and production.