mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a033cf9d5e
Summary: After this change: https://github.com/facebook/react-native/pull/49078 UIWindowSceneDelegate is no longer needed. This wasn't removed in the original PR. ## Changelog: [iOS] [Removed] - Remove no longer needed UISceneDelegate Pull Request resolved: https://github.com/facebook/react-native/pull/49628 Test Plan: CI GREEN Reviewed By: cortinico Differential Revision: D70102384 Pulled By: cipolleschi fbshipit-source-id: e33185a4becd949a9f0ec1eabeeb4fe85ef3ee79
18 lines
531 B
Objective-C
18 lines
531 B
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <RCTDefaultReactNativeFactoryDelegate.h>
|
|
#import <RCTReactNativeFactory.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : RCTDefaultReactNativeFactoryDelegate <UIApplicationDelegate>
|
|
|
|
@property (nonatomic, strong, nonnull) UIWindow *window;
|
|
@property (nonatomic, strong, nonnull) RCTReactNativeFactory *reactNativeFactory;
|
|
|
|
@end
|