Alexey Yudichev

Results 35 comments of Alexey Yudichev

@Godin , Sure technically it's not a false positive, but so is empty private constructors, unreachable switch branches etc - I am sure there are a lot of cases where...

Something similar happens on my project (https://github.com/ylexus/jiotty-photos-uploader/issues/118). Relatively easy to reproduce - just use JDK 16, checkout the repo above and execute `./gradlew -DCLIENT_SECRET_PATH= clean jpackage -DVERSION=0.0.0`. Then try to...

This actually solves the issue! Must have been required at some point before, but not with JDK 16. Thanks.

Happened to me on 1.4.200 just now: ``` Caused by: java.lang.IllegalStateException: File corrupted in chunk 1834, expected page length 4..384, got 301990318 [1.4.200/6] at org.h2.mvstore.DataUtils.newIllegalStateException(DataUtils.java:950) at org.h2.mvstore.Chunk.readBufferForPage(Chunk.java:368) at org.h2.mvstore.MVStore.readBufferForPage(MVStore.java:1214) at...

Current notarisation issues are: ``` "issues": [ { "severity": "error", "code": null, "path": "Jiotty_Photos_Uploader-2.0.3.dmg/Jiotty Photos Uploader.app/Contents/app/conscrypt-openjdk-uber-2.5.1.jar/META-INF/native/libconscrypt_openjdk_jni-osx-x86_64.dylib", "message": "The binary is not signed.", "docUrl": null, "architecture": "x86_64" }, { "severity": "error",...

Unfortunately, after a a lot of time spent, I conclude that Google Drive API used to monitor free space is not usable for this purpose. It only allows to monitor...

It may not be possible to support 32 but with the libraries that I depend on. Also I’ll need to install 32 bit windows virtual machine. I’ll investigate this in...

Making it work on 32 bit is very involved. 1. jdk14 jpackage creates a 32 bit exe, but the wrong (64 bit?) msi 2. there is no official openjfx 14...

Packaging is not the only problem, as I mentioned above. The app is written in java and is complied under jdk14. It bundles openjdk 14. I am using a tool...

Tried to fix the problem with openjfx by using Full version of Liberica JDK which includes JavaFX for 32 bit Windows: https://bell-sw.com/pages/java-14/. While the app now starts, the WebView component...