About 8,820,000 results
Open links in new tab
  1. Difference between using gradlew and gradle - Stack Overflow

    Jan 31, 2017 · The difference lies in the fact that ./gradlew indicates you are using a gradle wrapper. The wrapper is generally part of a project and it facilitates installation of gradle. If you …

  2. Manually install Gradle and use it in Android Studio

    That should force Gradle to "download" the package from your filesystem and set it up as it expects, while leaving other machines ok when you commit the gradle directory to your VCS.

  3. windows - What is .gradle folder used for? - Stack Overflow

    Mar 11, 2022 · Here's what it should look like: directory structure. If you are unsure of whether you are using Gradle inadvertently, which I think is more likely than something else using it …

  4. How do I tell Gradle to use specific JDK version? - Stack Overflow

    I can't figure out to get this working. Scenario: I have an application built with gradle The application uses JavaFX What I want Use a variable (defined per developer machine) which …

  5. What is Gradle in Android Studio? - Stack Overflow

    May 26, 2013 · Gradle is a bit confusing to me, and also for any new Android developer. Can anyone explain what Gradle in Android Studio is and what its purpose is? Why is it included in …

  6. How can I force Gradle to redownload dependencies?

    Nov 26, 2012 · If you are using a recent version of Gradle, you can use --refresh-dependencies option. ./gradlew build --refresh-dependencies you can refer to the Gradle manual. The - …

  7. Error message "gradlew: command not found" - Stack Overflow

    The first thing is you need to run the gradle task that you mentioned for this wrapper. Example: gradle wrapper After running this command, check your directory for the gradlew and …

  8. Gradle - Could not find or load main class - Stack Overflow

    Jul 24, 2014 · I fixed this by running a clean of by gradle build (or delete the gradle build folder mannually) This occurs if you move the main class to a new package and the old main class is …

  9. Starting from which version does Gradle support Java 21?

    Sep 20, 2023 · The release notes say: With this release, Gradle now fully supports compiling, testing and running on Java 21. If migrating from older Gradle, see What's new in Gradle 8.0. …

  10. gradle - getting rid of buildDir deprecation - Stack Overflow

    Nov 28, 2023 · To get rid of buildDir deprecation warning, update your build.gradle file with layout.buildDirectory The recommended replacement for buildDir is layout.buildDirectory. This …