diff --git a/packages/react-native/ReactAndroid/api/ReactAndroid.api b/packages/react-native/ReactAndroid/api/ReactAndroid.api index 686ce6e0f7366b..bd2e5dc8d9af7a 100644 --- a/packages/react-native/ReactAndroid/api/ReactAndroid.api +++ b/packages/react-native/ReactAndroid/api/ReactAndroid.api @@ -425,10 +425,6 @@ public abstract interface class com/facebook/react/ReactRootView$ReactRootViewEv public abstract fun onAttachedToReactInstance (Lcom/facebook/react/ReactRootView;)V } -public abstract class com/facebook/react/TurboReactPackage : com/facebook/react/BaseReactPackage { - public fun ()V -} - public abstract interface class com/facebook/react/ViewManagerOnDemandReactPackage { public abstract fun createViewManager (Lcom/facebook/react/bridge/ReactApplicationContext;Ljava/lang/String;)Lcom/facebook/react/uimanager/ViewManager; public abstract fun getViewManagerNames (Lcom/facebook/react/bridge/ReactApplicationContext;)Ljava/util/Collection; diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/TurboReactPackage.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/TurboReactPackage.java deleted file mode 100644 index c8f5ea9d24d105..00000000000000 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/TurboReactPackage.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * 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. - */ - -package com.facebook.react; - -import com.facebook.react.common.annotations.DeprecatedInNewArchitecture; - -/** This will eventually replace {@link LazyReactPackage} when TurboModules are finally done. */ -@DeprecatedInNewArchitecture(message = "Use BaseReactPackage instead") -public abstract class TurboReactPackage extends BaseReactPackage {}