react-native-devsettings
react-native-devsettings copied to clipboard
Enable react-native-debugger and chrome debugger on Hermes
Facing this issue on RN: 0.73.0 
Failed to create a new MMKV instance: React Native is not running on-device. MMKV can only be used when synchronous method invocations (JSI) are possible. If you are using a...
show example to enable on debug mode only
we can use `NativeModules.SettingsManager.settings.RCTDevMenu.isDebuggingRemotely` instead of `AsyncStorage` ```js import { useCallback, useEffect } from 'react'; import { NativeModules, DevSettings, Platform } from 'react-native'; export const useRemoteDebugger = () => {...
Description React Native Version: 0.76.2 (New Architecture with Hermes enabled) Debugging Tool: react-native-devsettings (No Flipper installed) Issue Description: Encountered an error when attempting to enable Remote JS Debugging using react-native-devsettings....