Raul Guzman
06/21/2024, 3:58 PM./gradlew build inside the folder. So here I have two questions. 1) Should I use the gradle wrapper or the gradle from my machine? 2) I tested both approaches of ‘1)’ but I am getting either not found exception error and some Dependency Verification: verify the signatures and checksums . So I think I am doing something wrong or these are like common error that I need to deal when whant to build locally ?Vampire
06/21/2024, 4:28 PMShould I use the gradle wrapperAlways, for every Gradle-powered build, unless it is missing the 4 Gradle wrapper files which I consider a build bug. The wrapper defines for which Gradle version a build was written for and known working properly with and auto-provisions that version if necessary and uses it. If you make sure to use the Gradle version the build expects using an installed version works just the same, but this is usually just unnecessary hassle. And especially with the Gradle build it might be hard because it often uses nightly builds.
or the gradle from my machine?Never, unless you need to build a project with said build bug. I usually do not even have any Gradle version installed. If I need to bootstrap a new build, I use the IDE or the wrapper of another Gradle build.
Raul Guzman
06/21/2024, 7:39 PM