diff --git a/packages/react-native/ReactAndroid/api/ReactAndroid.api b/packages/react-native/ReactAndroid/api/ReactAndroid.api index 2dad9b8865e..f879b8f0b24 100644 --- a/packages/react-native/ReactAndroid/api/ReactAndroid.api +++ b/packages/react-native/ReactAndroid/api/ReactAndroid.api @@ -932,15 +932,6 @@ public abstract interface class com/facebook/react/bridge/LifecycleEventListener public abstract fun onHostResume ()V } -public final class com/facebook/react/bridge/MemoryPressure : java/lang/Enum { - public static final field CRITICAL Lcom/facebook/react/bridge/MemoryPressure; - public static final field MODERATE Lcom/facebook/react/bridge/MemoryPressure; - public static final field UI_HIDDEN Lcom/facebook/react/bridge/MemoryPressure; - public static fun getEntries ()Lkotlin/enums/EnumEntries; - public static fun valueOf (Ljava/lang/String;)Lcom/facebook/react/bridge/MemoryPressure; - public static fun values ()[Lcom/facebook/react/bridge/MemoryPressure; -} - public abstract interface class com/facebook/react/bridge/MemoryPressureListener { public abstract fun handleMemoryPressure (I)V } diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/bridge/MemoryPressure.kt b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/bridge/MemoryPressure.kt deleted file mode 100644 index a11e192eff7..00000000000 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/bridge/MemoryPressure.kt +++ /dev/null @@ -1,17 +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.bridge - -import com.facebook.react.common.annotations.internal.LegacyArchitecture - -@LegacyArchitecture -public enum class MemoryPressure { - UI_HIDDEN, - MODERATE, - CRITICAL -}