I want an alternative way of activating this option without necessarily going through the RN dev menu. Reasons for this may be because the menu cannot be activated from the modal (see #2063), or that your shake gesture is already bound to something else useful in your app.
RN appears to persist the Enable Live Reload preference across sessions — I'm assuming it uses NSUserDefaults or some such, so a simple solution might be to document the exact key for which this preference is stored. I could then write into that key the value I want (YES, always) and enable it without the UI.
I want an alternative way of activating this option without necessarily going through the RN dev menu. Reasons for this may be because the menu cannot be activated from the modal (see #2063), or that your shake gesture is already bound to something else useful in your app.
RN appears to persist the Enable Live Reload preference across sessions — I'm assuming it uses
NSUserDefaultsor some such, so a simple solution might be to document the exact key for which this preference is stored. I could then write into that key the value I want (YES, always) and enable it without the UI.