Last active
April 17, 2024 20:54
-
-
Save giacomocerquone/cc195287d1104c8e288ab69f39802495 to your computer and use it in GitHub Desktop.
Useful adb logcat commands when working with react native
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// useful to debug js code errors | |
adb logcat "*:S" ReactNative:V ReactNativeJS:V | |
// useful to debug native errors (when the app won't even start) | |
adb logcat "*:E" |
Awesome, thanks!
Cool!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great