mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-13 12:26:45 +08:00
Hot Loading should be disabled by default
Summary: public Although the feature itself is gated, once the user is on the experiment we want to make sure hot loading starts disabled up until the feature is enabled through the dev menu. Reviewed By: javache Differential Revision: D2850070 fb-gh-sync-id: 66e69e152806d3bb01985afe20827e3b9cffeb41
This commit is contained in:
committed by
facebook-github-bot-3
parent
17e1ceb543
commit
c434893878
@@ -267,7 +267,7 @@ RCT_EXPORT_MODULE()
|
||||
self.shakeToShow = [_settings[@"shakeToShow"] ?: @YES boolValue];
|
||||
self.profilingEnabled = [_settings[@"profilingEnabled"] ?: @NO boolValue];
|
||||
self.liveReloadEnabled = [_settings[@"liveReloadEnabled"] ?: @NO boolValue];
|
||||
self.hotLoadingEnabled = [_settings[@"hotLoadingEnabled"] ?: @YES boolValue];
|
||||
self.hotLoadingEnabled = [_settings[@"hotLoadingEnabled"] ?: @NO boolValue];
|
||||
self.showFPS = [_settings[@"showFPS"] ?: @NO boolValue];
|
||||
self.executorClass = NSClassFromString(_executorOverride ?: _settings[@"executorClass"]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user