Skip to content

Commit

Permalink
Some more patches
Browse files Browse the repository at this point in the history
  • Loading branch information
mganandraj committed Aug 5, 2022
1 parent 2fa0e8e commit 7417cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
} else if (jsInterpreter == JSInterpreter.HERMES) {
HermesExecutor.loadLibrary();
return new HermesExecutorFactory();
+ } else if(mJSEngine == JSInterpreter.V8) {
+ } else if(jsInterpreter == JSInterpreter.V8) {
+ V8Executor.loadLibrary();
+ return new V8ExecutorFactory(appName, deviceName);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
+import com.facebook.soloader.SoLoader;
+
+@DoNotStrip
+/* package */ class V8Executor extends JavaScriptExecutor {
+public class V8Executor extends JavaScriptExecutor {
+ static {
+ loadLibrary();
+ }
Expand Down

0 comments on commit 7417cbc

Please sign in to comment.