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 2fa0e8e commit 7417cbcCopy full SHA for 7417cbc
android-patches/patches/V8/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManagerBuilder.java
@@ -13,7 +13,7 @@
13
} else if (jsInterpreter == JSInterpreter.HERMES) {
14
HermesExecutor.loadLibrary();
15
return new HermesExecutorFactory();
16
-+ } else if(mJSEngine == JSInterpreter.V8) {
++ } else if(jsInterpreter == JSInterpreter.V8) {
17
+ V8Executor.loadLibrary();
18
+ return new V8ExecutorFactory(appName, deviceName);
19
} else {
android-patches/patches/V8/ReactAndroid/src/main/java/com/facebook/react/v8executor/V8Executor.java
@@ -17,7 +17,7 @@
+import com.facebook.soloader.SoLoader;
+
+@DoNotStrip
20
-+/* package */ class V8Executor extends JavaScriptExecutor {
++public class V8Executor extends JavaScriptExecutor {
21
+ static {
22
+ loadLibrary();
23
+ }
0 commit comments