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 e7131fa commit 26854deCopy full SHA for 26854de
packages/react-native/ReactAndroid/src/main/java/com/facebook/react/runtime/BridgelessCatalystInstance.kt
@@ -145,8 +145,8 @@ public class BridgelessCatalystInstance(private val reactHost: ReactHostImpl) :
145
}
146
147
@Deprecated(message = "This API is unsupported in the New Architecture.")
148
- override fun getJavaScriptContextHolder(): JavaScriptContextHolder {
149
- throw UnsupportedOperationException("Unimplemented method 'getJavaScriptContextHolder'")
+ override fun getJavaScriptContextHolder(): JavaScriptContextHolder? {
+ return reactHost.getJavaScriptContextHolder()
150
151
152
override fun getRuntimeExecutor(): RuntimeExecutor? {
0 commit comments