20 lines
520 B
Objective-C
20 lines
520 B
Objective-C
// Copyright © 2018 650 Industries. All rights reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
The legacy wrapper is still used to forward app delegate calls to singleton modules.
|
|
See `EXAppDelegatesLoader.m` which registers this class as a subscriber of `ExpoAppDelegate`.
|
|
*/
|
|
#if TARGET_OS_OSX
|
|
@interface EXLegacyAppDelegateWrapper : NSResponder <NSApplicationDelegate>
|
|
#else
|
|
@interface EXLegacyAppDelegateWrapper : UIResponder <UIApplicationDelegate>
|
|
#endif
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|