This message was deleted.
# community-support
s
This message was deleted.
👀 1
v
I see two strange things. 1. That no repo is configure though you applied the foojay plugin. 2. That it searches for any vendor when you configured Azul explicitly. Are you sure you are running the build your are modifying?
c
Thanks for the reply. The project is open source so let me share some more information later today when I’m at a computer.
This pull request contains commits to demonstrate the issue: https://github.com/zcash/zcash-android-wallet-sdk/pull/942 (I had to update the Protobuf gradle plugin to resolve a different compatibility issue with Gradle 8.0+). The last two commits include configuring the toolchain download plus the explicit setting of the toolchain, which I’m doing to work around an incompatibility with KSP). The CI build job demonstrates the issue happening, without you having to check out and build the project. (This particular project requires Rust, so setting up a build locally requires a bit of effort).
v
You did not apply the foojay plugin
You just defined its default version if used in a
plugins { ... }
block without version by having it in
pluginManagement { plugins {... } }
. To apply it, you have to add it to the top-level
plugins { ... }
block.
Btw. I'm not in any way affiliated to Gradle. I'm not even a Gradle Fellow. I'm just a user like you. 😉
c
🤦‍♂️
I’ll be able to test it in a few hours, but that’s certainly going to resolve it.
👌 1