About 50 results
Open links in new tab
  1. 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 Android Studio?

  2. Manually install Gradle and use it in Android Studio

    20 (There are 2 solutions mentioned in existing answers that might work, but the preferred one - manually download gradle for gradlew, is lack of essential details, and cause it fail. So, I would add a …

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

    Sep 20, 2023 · Java 22, Gradle 8.7 Gradle 8.7 supports Java 22 for compiling, testing, and running JVM-based projects. See Gradle Release Notes and Gradle User Manual. But Gradle 8.7 cannot run …

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

    Gradle uses whichever JDK it finds in your path (to check, use java -version). Alternatively, you can set the JAVA_HOME environment variable to point to the install directory of the desired JDK.

  5. build.gradle - What's the difference between "implementation", "api ...

    Jun 12, 2017 · So you have the blue boxes compileClasspath and runtimeClassPath. The compileClasspath is what is required to make a successful build when running gradle build. The …

  6. gradle clean fails with "GradleException: Failed to create Jar file"

    Oct 3, 2023 · I'm seeing a very strange problem with gradle. When I run any command (see clean below), gradle fails with a concurrent exception. This is happening since my latest changes. Rolling …

  7. java - Gradle build without tests - Stack Overflow

    Dec 9, 2023 · I want to execute gradle build without executing the unit tests. I tried: gradle -Dskip.tests build That doesn't seem to do anything. Is there some other command I could use?

  8. How can I create a Java Gradle project and building the .jar file in ...

    Create a new Gradle (not Java) project. Be sure to select the Java option in the dialog. Click Next. fill GroupId, ArtifactId and version Choose your Gradle distribution. You can safely use the …

  9. 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 completely by …

  10. 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 gradlew.bat files. …