gradlew Questions
1
Solved
extremely close to this SO post, and asked in comments, but left unclear there.
$ git clone https://github.com/k9mail/k-9.git
$ cd k-9/mail/protocols/smtp
$ ../../../gradlew dependencies | grep &qu...
Ergosterol asked 4/4, 2021 at 12:24
2
Solved
I can query the dependency tree for a Gradle project with ./gradlew -q dependencies.
I can also run the query for the service subproject with ./gradlew service:dependencies.
How can I list the depe...
Hypocaust asked 22/1, 2021 at 20:24
3
Solved
I have several gradle-based projects and on all of them recently I've become unable to execute a ./gradlew clean build. Upon running this, the When I run with the --debug flag, I get stuck on > ...
Baty asked 7/7, 2017 at 17:42
3
Solved
After upgrading to Gradle 7.0 and making a build, I'm getting following failure:
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Some problems were found...
Intractable asked 13/4, 2021 at 21:23
8
I'm unable to build the project after updating android studio to 3.4. can anyone please help me.
Unable to find method 'org.gradle.api.tasks.compile.CompileOptions.setBootClasspath(Ljava/lang/Stri...
Podagra asked 30/4, 2019 at 1:23
1
Gradle version: 5.1
Java version: 11
I have the following task defined in gradle file to generate QueryDSL classes:
task generateQClasses (type: JavaCompile) {
source = sourceSets.main.ja...
Minoru asked 11/6, 2020 at 9:12
0
Hello everyone once I update my android studio to Arctic fox while publishing the artifact(command - ./gradlew assembleRelease artifactoryPublish) I am getting this error. I have written below grad...
Guy asked 21/10, 2021 at 18:44
3
Solved
I have a gradle task which calls a script and passed the command line arguments to the script using -PARGS.
task taskAll(type: Exec, dependsOn: taskinit) {
environment['PROJECT_ROOT'] = "${proje...
Scratchy asked 30/10, 2015 at 4:9
2
Solved
In order to bootstrap Gradle-Wrapper, I need to pull the Gradle distribution from an Artifactory which requires HTTP Basic-Auth. There's no way for my build environment to access the outside world ...
1
I was using java from this path C:\Program Files\Java\jdk-17 and I have used gradle-6.9 at that time. Later I have installed OpenJDK and now my JAVA_HOME is C:\Program Files\Eclipse Foundation\jdk-...
Praefect asked 17/9, 2021 at 3:2
1
Building docker image.......
/usr/bin/env: ‘sh\r’: No such file or directory
execution failed
complete script
#!/bin/bash
echo "Building docker image......."
. gradle.properties
IMAGE="$dockerR...
2
Solved
Problem
I have just finished making a few changes in my React Native app and on the android emulator when reloading ( R, R) then changes appear.
I then ran the command:
./gradlew assembleDebug
...
Seymour asked 17/11, 2017 at 9:39
8
Solved
I'm new to Gradle and was going through this Spring Tutorial found here:
http://spring.io/guides/gs/gradle/
I get to the part where it tells me to add this task:
task wrapper(type: Wrapper) {
g...
40
Solved
The Problem is that i am able to run my app when i change to debug mode but it fails when i switch to release mode.
Exception:
**FAILURE: Build failed with an exception.**
> Execution failed f...
Queridas asked 9/3, 2016 at 11:25
3
Problem
When I click on the debug icon in Android Studio, I get this NullPointerException from R8.
Executing tasks: [:app:assembleDebug] in project /Users/gary/Developer/Foo/Foo-Android
> Tas...
Outworn asked 14/9, 2019 at 6:29
6
Solved
2
Am getting java.lang.unsupportedclassversionerror in gradle build, it is a multiproject gradle build. Am using Java-8 and it was working so far but, all of a sudden it stopped working and started t...
Silesia asked 18/6, 2021 at 20:32
1
I am upgrading the dependencies of my react-native application from 0.53 to 0.59.
But I am facing the below error while trying to build it using ./gradlew assembleRelease.
@babel/template placehold...
Anastomosis asked 13/10, 2020 at 21:52
6
Solved
My react native build works fine when running react-native run-android or cd android && ./gradlew assembleDebug. But I'll get the following for all every react native package I have install...
Fourwheeler asked 23/3, 2018 at 16:21
2
Solved
There are quite a few questions with the above error, but most of them are related to eclipse, for me it's happening in android studio and also for the project which was working fine till now.
My a...
Aglimmer asked 6/5, 2021 at 16:52
5
I've created an app in react-native. I need the package name to be:
com.org.appname
React-native does not allow you to specify this as the package name in the init, or to change it after init.
re...
Debera asked 8/4, 2017 at 11:2
4
I am working in Ubuntu 16.04. I need to install gradle and the gradle is installed when i checked with sudo apt list --installed command but when i use gradle -version command it shows the followin...
4
Solved
Can anyone please tell me if there is any advantage of gradlew over gradle?
Also I have some doubts on the gradle-wrapper.properties file.
Initially when I ran
C:\project_basedir>gradle wrapper
...
7
Solved
So i am trying to start a react native android project in windows 10 based on the Getting Start React Native.
I am stuck at the last step->react-native run-android
ps: Im using genymotion for m...
Catercorner asked 2/4, 2017 at 8:31
4
Solved
When I run ./gradlew I get
Exception in thread "main" java.lang.NoClassDefFoundError:
org/gradle/wrapper/GradleWrapperMain Caused by:
java.lang.ClassNotFoundException: org.gradle.wrapper.Grad...
Planking asked 4/9, 2014 at 16:29
© 2022 - 2024 — McMap. All rights reserved.