-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathReactTestApp-DevSupport.m
More file actions
30 lines (24 loc) · 1.49 KB
/
ReactTestApp-DevSupport.m
File metadata and controls
30 lines (24 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#import <Foundation/Foundation.h>
NSNotificationName const ReactAppDidFinishLaunchingNotification =
@"ReactAppDidFinishLaunchNotification";
NSNotificationName const ReactAppWillInitializeReactNativeNotification =
@"ReactAppWillInitializeReactNativeNotification";
NSNotificationName const ReactAppDidInitializeReactNativeNotification =
@"ReactAppDidInitializeReactNativeNotification";
NSNotificationName const ReactAppRuntimeReadyNotification = @"ReactAppRuntimeReadyNotification";
NSNotificationName const ReactAppDidRegisterAppsNotification =
@"ReactAppDidRegisterAppsNotification";
NSNotificationName const ReactAppSceneDidOpenURLNotification =
@"ReactAppSceneDidOpenURLNotification";
NSNotificationName const ReactTestAppDidInitializeNotification =
ReactAppDidFinishLaunchingNotification;
NSNotificationName const ReactTestAppWillInitializeReactNativeNotification =
ReactAppWillInitializeReactNativeNotification;
NSNotificationName const ReactTestAppDidInitializeReactNativeNotification =
ReactAppDidInitializeReactNativeNotification;
NSNotificationName const ReactTestAppDidRegisterAppsNotification =
ReactAppDidRegisterAppsNotification;
NSNotificationName const ReactTestAppSceneDidOpenURLNotification =
ReactAppSceneDidOpenURLNotification;
// https://github.com/facebook/react-native/blob/v0.73.4/packages/react-native/ReactCommon/react/runtime/platform/ios/ReactCommon/RCTInstance.mm#L448
NSNotificationName const ReactInstanceDidLoadBundle = @"RCTInstanceDidLoadBundle";