Eric Lange

Results 34 comments of Eric Lange

Which version of LiquidCore are you using? There was definitely a problem using the metro bundler with the minifier turned on, which is the default for bundling. I turned it...

Hi @boby1975 , The easiest way to do it is to use a method that I just added about two weeks ago -- #156 Android: ```java android.content.Context context = ...;...

Are you sure this is the issue? From [`android-configure`](https://github.com/LiquidPlayer/LiquidCore/blob/master/deps/node-10.15.3/android-configure): ```bash ./configure \ --dest-cpu=$DEST_CPU \ --dest-os=android \ --with-intl=small-icu \ --openssl-no-asm \ --cross-compiling \ --with-snapshot \ --shared ``` From [`configure.py`](https://github.com/LiquidPlayer/LiquidCore/blob/master/deps/node-10.15.3/configure.py): ```python def...

Hmm, interesting. Does it behave this way on desktop, too? Or don't you really know since you just Ctrl^C anyway? I just added a nuclear option to Android which will...

@pdulapalli @AbortingMission I think I know why this is happening. I need to figure out how to deal with it, however. In node, when you call `process.exit()` it basically throws...

Unfortunately this is not trivial. You have to build the V8 static libraries separately ([see here](https://github.com/LiquidPlayer/LiquidCore/tree/master/LiquidV8/prebuilt)) and then make sure you are including all of the correct files in `CMakeLists.txt`...

Hi @MihaelIsaev and @paulsUsername I am the author of LiquidCore. I haven't updated the project in close to a year because of other commitments. I need to find a sponsorship...

Hi @MihaelIsaev and @paulsUsername Please add these two lines to the bottom of the dependency section of your module's `build.gradle`: ```gradle implementation fileTree(include:["liquidcore-Nodejs-0.7.10.aar"], dir:"./liquidcore") implementation fileTree(include:["liquidcore-V8-0.7.10.aar"], dir:"./liquidcore") ``` This should...

Interesting. I am also using `nvm` and it never occurred to me that the build script is ignoring that. [This](https://github.com/LiquidPlayer/LiquidCore/blob/master/lib/pod.js#L50) is the only place that it matters, though, no? You...

The AARs are hosted on github. If you look at [include.gradle](https://github.com/LiquidPlayer/LiquidCore/blob/master/include.gradle) and [include.V8.gradle](https://github.com/LiquidPlayer/LiquidCore/blob/master/include.V8.gradle), this is where the AAR download happens. If you can figure out a solution, please file a...