Most voted "gradle" questions
Gradle is an advanced builds automation system and dependency manager. The Gradle build files are scripts written in the Groovy language, unlike the Ant and Maven build formats that use XML files for configuration. If the question is not about "Gradle", do not use this tag, even if you are using "Gradle" in your project.
Learn more…114 questions
Sort by count of
-
0
votes0
answers5
viewsError when building with Android Studio with Vuzix Speech SDK
I exported a project in Unity to Android Studio in order to implement the voice commands function of Smartglass Vuzix M400, the problem is that I am trying to build and the following error appears…
-
0
votes3
answers55
viewsUnsatisfied dependency Expressed through field 'cartRepository'
Good afternoon to everyone, I am taking a Spring course and using Redis, but I came across a mistake that has taken me many hours of study and so far I have not been able to solve it. Someone would…
-
-1
votes1
answer81
viewsFailed to build Android Studio project :app:packageDebug
Execution failed for task ':app:packageDebug'. > A failure occurred while executing com.android.build.gradle.tasks.PackageAndroidArtifact$IncrementalSplitterRunnable > Entry name…
-
-1
votes1
answer9
viewsHow to implement a separate android project on Gradle dependencies, without modifying the path or url
I have this scenario in Gradle (build.Radle) implementation ("br.com.mycompany.feature:feature:$mycompanyFeatureVersion") { transitive = true exclude group: 'br.com.mycompany', module: 'comons' } I…
-
-1
votes2
answers19
viewsIntellij - Java Error - Gradle Sync failed: Cannot Convert relative path ~/GRADLE_HOME/daemon/6.8 to an Absolute file
The problem is appearing whenever I try to run the program, and the Packages program do not appear either. I opened the same project by Vscode and worked normally there, just not working by…
-
-1
votes1
answer335
viewsError running run-android on a React project
I am trying to run the command "React-Native run-android" in project that was passed to me and is not working. I have tried to change the file Gradle.properties to use Androidx but only gives…
-
-1
votes1
answer1572
viewsGradle error starting React Native project
Guys, I’m having trouble starting an React Native project while running the command npx react-native run-android. The mistake is: info Running jetifier to migrate libraries to AndroidX. You can…
-
-1
votes1
answer16
viewsBasic authentication on Android Gradle [beginner]
I am an intern. I have an android project, I am in build.Radle, my superior said that for security purposes I could not edit the project (source code) to enter my authentication, I should find a way…
android android-studio gradle groovy android-gradleasked 3 years, 8 months ago Cristopher Vieira 11 -
-1
votes1
answer16
viewsError using Gradle distribution
I’m starting out in the groovy world with Grails. Running the command 'dbm-update' (to update with bd on my machine and the Migration etc) causes this build error. I know almost nothing of java. (…
-
-2
votes1
answer133
viewsError updating package in Gradle project
In a Gradle project, there was a need to update build.grade to another format which caused an error: build.Gradle /* * This build file was generated by the Gradle 'init' task. * * This generated…
-
-2
votes1
answer124
viewsProblems using the Cardview element (Material Design - Android)
I’m trying to use the Cardview element of Material Design in my Android app, but I’m not getting. Could someone help me identify the error of my code? Below is the code used. Log of Android Studio…
-
-3
votes1
answer157
viewscould not open terminal for stdout
I am having a problem with Gradle when executing any command is returned to me the following error message: * What went wrong: Could not open terminal for stdout: could not get termcap entry Preview…
-
-3
votes1
answer192
viewsException in thread "main" java.lang.Illegalargumentexception: Type without superclass: module-info
I created a game with libgdX and runs normally on mobile emulator, but now to generate the key apk it does not generate, I’m wasting a little time with it, someone knows the solution ? Exception in…
-
-3
votes2
answers192
viewsHow to make the findById method in spring-boot?
I’m making an Api where I need to get a user’s information through findById, but the STATUS in Postman is like 200 and did not display anything. Code below. controller @RestController…