Skip to content

Commit 7417cbc

Browse files
committed
Some more patches
1 parent 2fa0e8e commit 7417cbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android-patches/patches/V8/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManagerBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
} else if (jsInterpreter == JSInterpreter.HERMES) {
1414
HermesExecutor.loadLibrary();
1515
return new HermesExecutorFactory();
16-
+ } else if(mJSEngine == JSInterpreter.V8) {
16+
+ } else if(jsInterpreter == JSInterpreter.V8) {
1717
+ V8Executor.loadLibrary();
1818
+ return new V8ExecutorFactory(appName, deviceName);
1919
} else {

android-patches/patches/V8/ReactAndroid/src/main/java/com/facebook/react/v8executor/V8Executor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
+import com.facebook.soloader.SoLoader;
1818
+
1919
+@DoNotStrip
20-
+/* package */ class V8Executor extends JavaScriptExecutor {
20+
+public class V8Executor extends JavaScriptExecutor {
2121
+ static {
2222
+ loadLibrary();
2323
+ }

0 commit comments

Comments
 (0)