Skip to content

Commit f3fee67

Browse files
robikfacebook-github-bot
authored andcommittedSep 13, 2024·
fix: AppRegistry not callable from Native in bridgeless (#46480)
Summary: AppRegistry was not treated as a Callable Module in bridgeless mode. This is breaking headless tasks on Android. Fixes: - #46050 ## Changelog: [ANDROID] [FIXED] - Made AppRegistry callable from Native code in Bridgeless (fixes headless tasks) Pull Request resolved: #46480 Test Plan: Used repro from linked issue Reviewed By: javache Differential Revision: D62637486 Pulled By: cortinico fbshipit-source-id: 756527003ac6d712e76c02c188e280d15c010068
1 parent b98b9f1 commit f3fee67

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed
 

‎packages/react-native/Libraries/ReactNative/AppRegistry.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import type {RootTag} from '../Types/RootTagTypes';
1313
import type {IPerformanceLogger} from '../Utilities/createPerformanceLogger';
1414
import type {DisplayModeType} from './DisplayMode';
1515

16-
import BatchedBridge from '../BatchedBridge/BatchedBridge';
16+
import registerCallableModule from '../Core/registerCallableModule';
1717
import BugReporting from '../BugReporting/BugReporting';
1818
import createPerformanceLogger from '../Utilities/createPerformanceLogger';
1919
import infoLog from '../Utilities/infoLog';
@@ -363,8 +363,8 @@ global.RN$SurfaceRegistry = {
363363

364364
if (global.RN$Bridgeless === true) {
365365
console.log('Bridgeless mode is enabled');
366-
} else {
367-
BatchedBridge.registerCallableModule('AppRegistry', AppRegistry);
368366
}
369367

368+
registerCallableModule('AppRegistry', AppRegistry);
369+
370370
module.exports = AppRegistry;

‎packages/react-native/ReactAndroid/src/main/java/com/facebook/react/HeadlessJsTaskService.java

+4-8
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,11 @@ public void run() {
124124
@Override
125125
public void onDestroy() {
126126
super.onDestroy();
127+
ReactContext reactContext = getReactContext();
127128

128-
if (getReactNativeHost().hasInstance()) {
129-
ReactInstanceManager reactInstanceManager = getReactNativeHost().getReactInstanceManager();
130-
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
131-
if (reactContext != null) {
132-
HeadlessJsTaskContext headlessJsTaskContext =
133-
HeadlessJsTaskContext.getInstance(reactContext);
134-
headlessJsTaskContext.removeTaskEventListener(this);
135-
}
129+
if (reactContext != null) {
130+
HeadlessJsTaskContext headlessJsTaskContext = HeadlessJsTaskContext.getInstance(reactContext);
131+
headlessJsTaskContext.removeTaskEventListener(this);
136132
}
137133
if (sWakeLock != null) {
138134
sWakeLock.release();

0 commit comments

Comments
 (0)
Please sign in to comment.