Martin Häusler
Martin Häusler
Got another one... ``` FATAL ERROR in native method: Bad global or local ref passed to JNI Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x9b28bf] ReportJNIFatalError+0x2f...
@CedNaru I saw your proposal in #618 and for what my opinion is worth, the proposal makes sense to me. Maybe it could also be worth a try to see...
I'm facing this issue too. I'm using this plugin to trigger a `yarn run xyz` command (which internally triggers webpack), and gradle does not recognize when the source files are...
Here's a workaround: task build(type: YarnTask){ // the usual yarn config... // tell gradle what the input and output files are inputs.file("package.json").withPathSensitivity(PathSensitivity.RELATIVE) inputs.dir("src").withPathSensitivity(PathSensitivity.RELATIVE) inputs.file("yarn.lock").withPathSensitivity(PathSensitivity.RELATIVE) outputs.dir("dist") // tell gradle to apply...
@lppedd I can't speak for the repo owner but to me that sounds fantastic!
It's odd that the extension isn't enabled by default on linux. I know for a fact that in the windows version, the JSON1 extension is enabled by default because my...
@lucydodo I just tried it, sorry but my SQLite crashes immediately (without any error message, the window just closes) when I try to add that extension file...
If there's a way to enable JSON1 by default on linux, please enable it. It would make my daily work that much easier.
Hey folks, I've just acquired SQLite Browser 3.12.0 from `https://launchpad.net/~linuxgndu/+archive/ubuntu/sqlitebrowser` using Ubuntu 20.10 and it still doesn't include the JSON1 extension... This is unfortunately still an issue.
I'm not really all that comfortable with compiling native binaries to be honest. Those things tend to go wrong in all sorts of ways (wrong library versions etc.). My short-term...