mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
95ed8a6123
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/50317 `rncore`, `FBReactNativeSpec` and `FBReactNativeComponentSpec` contain the same symbols, which leads to conflicts when we try to merge them into a single shared library. Cleanup the duplication and standardize on `FBReactNativeSpec` everywhere. I've left the Android OSS targets names as is, to avoid breaking deps. This aligns react-native's package.json with the codegen tooling supported across iOS and Android, which is a single target for all all type-derived codegen. Changelog: [Internal] Reviewed By: sammy-SC Differential Revision: D55037569 fbshipit-source-id: dbf3c0a427c9d0df96e439b04e5b123cd1069c51
17 lines
444 B
Objective-C
17 lines
444 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 <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
#import <react/renderer/components/FBReactNativeSpec/RCTComponentViewHelpers.h>
|
|
|
|
@interface RCTDebuggingOverlayComponentView : RCTViewComponentView <RCTDebuggingOverlayViewProtocol>
|
|
|
|
@end
|