AppDelegate.h 357 B

123456789101112
  1. #import <React/RCTBridgeDelegate.h>
  2. #import <JPUSHService.h>
  3. #import <Expo/Expo.h>
  4. #import <UIKit/UIKit.h>
  5. #import "NativeBridge.h"
  6. @interface AppDelegate : EXAppDelegateWrapper <UIApplicationDelegate, RCTBridgeDelegate,JPUSHRegisterDelegate>
  7. @property (nonatomic, strong) UIWindow *window;
  8. @property (nonatomic, strong) NativeBridge *nativeBridge;
  9. @end