Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions packages/react-native/ReactAndroid/api/ReactAndroid.api
Original file line number Diff line number Diff line change
Expand Up @@ -114,18 +114,15 @@ public class com/facebook/react/ReactActivityDelegate {
protected fun composeLaunchOptions ()Landroid/os/Bundle;
protected fun createRootView ()Lcom/facebook/react/ReactRootView;
protected fun getContext ()Landroid/content/Context;
public fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
public final fun getCurrentReactContext ()Lcom/facebook/react/bridge/ReactContext;
protected fun getLaunchOptions ()Landroid/os/Bundle;
public fun getMainComponentName ()Ljava/lang/String;
protected fun getPlainActivity ()Landroid/app/Activity;
protected fun getReactActivity ()Lcom/facebook/react/ReactActivity;
protected fun getReactDelegate ()Lcom/facebook/react/ReactDelegate;
public fun getReactHost ()Lcom/facebook/react/ReactHost;
public fun getReactInstanceManager ()Lcom/facebook/react/ReactInstanceManager;
protected fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
protected fun isFabricEnabled ()Z
protected fun isWideColorGamutEnabled ()Z
protected fun loadApp (Ljava/lang/String;)V
public final fun loadApp (Ljava/lang/String;)V
public fun onActivityResult (IILandroid/content/Intent;)V
public fun onBackPressed ()Z
public fun onConfigurationChanged (Landroid/content/res/Configuration;)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public abstract class ReactActivity protected constructor() :
get() = reactActivityDelegate.reactHost

protected val reactNativeHost: ReactNativeHost
get() = reactActivityDelegate.reactNativeHost
@Suppress("DEPRECATION") get() = reactActivityDelegate.reactNativeHost

protected val reactInstanceManager: ReactInstanceManager
get() = reactActivityDelegate.reactInstanceManager
@Suppress("DEPRECATION") get() = reactActivityDelegate.reactInstanceManager

/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
Expand Down

This file was deleted.

Loading