If it helps, I'll get it into github and share the link... But it's basically mostly vanilla right now.
Discussion
Maybe the jna has to be re-added. Also, check the ...jna:jna... below:
implementation("com.github.vitorpamplona.amethyst:quartz:0.92.7") {
exclude("net.java.dev.jna")
}
implementation("net.java.dev.jna:jna:5.17.0")
I got a different error after doing this, but after trying all variations to understand what was going on, I realise that this just makes the situation worse.
The error is `java.lang.NoClassDefFoundError: Failed resolution of: Lcom/sun/jna/Native;`
It doesn't seem that this is the right course of action as I get the same error whether I add jna to my dependencies or not.
Anyway, I will keep exploring ideas. My repo if you have time to play, is https://github.com/dipunm/meneme
nostr:nprofile1qqsyvrp9u6p0mfur9dfdru3d853tx9mdjuhkphxuxgfwmryja7zsvhqpzamhxue69uhhv6t5daezumn0wd68yvfwvdhk6tcpz9mhxue69uhkummnw3ezuamfdejj7qgwwaehxw309ahx7uewd3hkctcscpyug not sure why it didn't work last night, but I tried again today and this worked:
```
Implementation ("com.github.vitorpamplona.amethyst:quartz:v0.84.3") {
exclude("net.java.dev.jna", "jna")
}
implementation("net.java.dev.jna:jna:5.17.0@arr")
```
❤️
Let me know when you have it on Github, I can take a look