File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public abstract class com/facebook/react/ReactActivity : androidx/appcompat/app/
93
93
protected fun createReactActivityDelegate ()Lcom/facebook/react/ReactActivityDelegate;
94
94
protected fun getMainComponentName ()Ljava/lang/String;
95
95
public fun getReactActivityDelegate ()Lcom/facebook/react/ReactActivityDelegate;
96
- public fun getReactDelegate ()V
96
+ public fun getReactDelegate ()Lcom/facebook/react/ReactDelegate;
97
97
protected final fun getReactInstanceManager ()Lcom/facebook/react/ReactInstanceManager;
98
98
protected final fun getReactNativeHost ()Lcom/facebook/react/ReactNativeHost;
99
99
public fun invokeDefaultOnBackPressed ()V
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ protected void onDestroy() {
65
65
mDelegate .onDestroy ();
66
66
}
67
67
68
- public void getReactDelegate () {
69
- mDelegate .getReactDelegate ();
68
+ public @ Nullable ReactDelegate getReactDelegate () {
69
+ return mDelegate .getReactDelegate ();
70
70
}
71
71
72
72
public ReactActivityDelegate getReactActivityDelegate () {
You can’t perform that action at this time.
0 commit comments