José Pereda

Results 217 comments of José Pereda

@zrb80 see https://github.com/gluonhq/client-samples/issues/88#issuecomment-641459463

Setting up the log framework might not be straightforward. Without it, can you just add `true` to the plugin, and run `mvn client:link client:run`, then check the logs under `target\client\x86_64-microsoft\gvm\log`....

I see it works for 23 seconds, so it might crash at some given point? Maybe when you access some view or click on some action? Could you guess which...

OK, that's good, it gives you the reason why it fails: the class `org.apache.poi.xssf.usermodel.XSSFSheet` is missing from the ``. Add it and try again.

if you don't have this folder: `"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs"`, the process will fail (actually the message is wrong, it should say "MacOSX", not iOS). But I see that you can have the...

Hmm, can you try adding a module-info descriptor? It looks like the nativeRunAgente task of the gradle plugin fails for non-modular applications. @abhinayagarwal It seems that with non-modular projects, the...

What is your NDK version (under `/home/olivier/.gluon/substrate/Android/ndk-bundle/source.properties`). If it is old (like 21, 22), you might need to install a newer one.

Yes, see https://github.com/gluonhq/substrate/issues/1089

Android doesn't use LLVM now for native compilation. It would be good if you can try again with latest versions (GraalVM 20.2.0 and plugin 0.1.31).

Narrowed it down to the following: ``` let tmp_dir = tempfile::tempdir().unwrap(); let metadata = fs::metadata(&tmp_dir).unwrap(); let mut perms = metadata.permissions(); perms.set_readonly(true); let tmp_file = tmp_dir.path().join("keypair_fails"); let res = fs::File::create(&tmp_file); match...