native developers. I have been developing and maintaining a react-native app for the past four years now. Now I have come to a point where I no longer know a way to debug my app. I am using recent versions of both react-native-reanimated
and @react-native-firebase
for stability and feature requirements. Both of these libraries have limitations on debugging.
react-native-reanimated
uses Turbo Modules and breaks debugging react-native with chrome tools and the great react-native-debugger
.
@react-native-firebase
above v15.x now requires us to have use_frameworks!
in our Podfile which breaks Flipper debugging.
Without these options for debugging, what is left? Is anyone in the same situation and has a solution to debug their react-native app and view their redux state?
I appreciate the help.
My current versions in my app:
"@react-native-firebase/app": "15.5.0",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-reanimated": "^2.13.0",