We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d523d commit 426df50Copy full SHA for 426df50
packages/react-native/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt
@@ -149,8 +149,8 @@ public class BridgelessCatalystInstance(private val reactHost: ReactHostImpl) :
149
throw UnsupportedOperationException("Unimplemented method 'getJavaScriptContextHolder'")
150
}
151
152
- override fun getRuntimeExecutor(): RuntimeExecutor {
153
- throw UnsupportedOperationException("Unimplemented method 'getRuntimeExecutor'")
+ override fun getRuntimeExecutor(): RuntimeExecutor? {
+ return reactHost.getRuntimeExecutor()
154
155
156
override fun getRuntimeScheduler(): RuntimeScheduler {
0 commit comments