Questions tagged [build-tools]

Build-tools are tools designed to help and automate the process of compiling, packaging and deploying software.

421 questions
0
votes
0 answers

App crashed in Android version 5.0 and above

I develop the Android App but there is problem i'm facing that my App run proper in all versions except the 5.0 and above. I was searching the solution from many days but still not get the answer, i have applied many methods gradle file : apply…
Gurpreet
  • 1
  • 3
0
votes
0 answers

Webpack file loader not recognized

I am trying to build my project using webpack and thus far I am loving it. However, now that I am trying to include font-awesome, it is annoying me quite a bit. I have installed font-awesome through npm, and I have imported it into my project using…
muuk
  • 932
  • 1
  • 7
  • 15
0
votes
0 answers

App getting crashed in version 5.0

The problem I am facing is that my android application works well on devices 4.4.2 and below, but crashes on devices having Lollipop(5.0) and its corresponding higher versions.I know that its somehow related to the build tools in my gradle file,but…
Gurpreet
  • 1
  • 3
0
votes
1 answer

which Classes in ANT Source parse build.xml?

i want to know which classes in the ANT source code are used to parse the build.xml build file. after parsing this build.xml file i want to store the details that were present in the build.xml into a arraylist of targets.
0
votes
1 answer

How to get code coverage using gb?

Running gb: gb test ...//... -v works, but running gb test ...//... -coverprofile=cover.out results in: testing: cannot use -test.coverprofile because test binary was not built with coverage enabled while go test -coverprofile…
030
  • 10,842
  • 12
  • 78
  • 123
0
votes
2 answers

Android Build Tools version error libGDX project

I have got following error message: AssertionError: build-tools-23.0.0 doesn't match build-tools-23.0.0-preview Already tried to install it, but I see this message in Android Studio: Where should I update version number to latest in libGDX…
user4725754
0
votes
1 answer

AndroidStudio says Error:Execution failed for task ':app:processDebugResources'

I get the following error, while compiling / building my app with AndroidStudio 1.4: Error:Execution failed for task ':app:processDebugResources'.> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException:…
Martin Pfeffer
  • 12,471
  • 9
  • 59
  • 68
0
votes
0 answers

Occassional Gulpfile freakout using gulp-changed and/or gulp-newer and and upload task

I've written a nice little build script that runs some pretty standard tasks like... Cleaning out my deploy/ directory before initially Building, concatenation, uglifying, and copying files from their dev/ directories to associated deploy/…
0
votes
2 answers

Is it possible to trigger dependent job in Jenkins BEFORE main job starts?

There are few jobs: A, B and Others. A depends from B, i.e A job triggers B one, but no vice versa. A and B cannot be run simultaneously. So, the problem is that the jobs lock each other: A waits while B will be finished, when B can't start, because…
Babay
  • 75
  • 7
0
votes
2 answers

Error while importing cordova project to android studio

I'm getting following error when im trying to import a cordova project. But i have build tools 19.1, 20 and higher. I have latest cordova version 5.1.1 please refer the below image. This is my SDK manager. I have checked lot of stackoverflow…
Dino
  • 806
  • 1
  • 8
  • 22
0
votes
1 answer

Accessing project.json webroot value from a npm script command?

I am trying to use NPM as my ASP.NET 5 (Vnext) build tool as well as use to build my js/cs files but i do not want to duplicate configuration values in my npm and asp.net 5 config files. in my project i have the following…
Madu Alikor
  • 2,544
  • 4
  • 21
  • 36
0
votes
1 answer

Error updating buildToolsVersion 21.0.2 to 22.0.1

Recently addded this: buildToolsVersion '22.0.1' I am using different productFlavors. android { compileSdkVersion 22 buildToolsVersion '22.0.1' defaultConfig { applicationId 'com.consulta' minSdkVersion 17 …
sphairo
  • 11
  • 4
0
votes
0 answers

How do I generate Javadocs from Java in a cross-platform way?

I'm working on improving the lein-javadoc plugin to the Leiningen build tool. It runs in a JVM process and has the project's classpath at its disposal. What is the most cross-platform way of generating javadocs? Find $JAVA_HOME/../lib/tools.jar and…
0
votes
2 answers

How to install back the missing build tools in eclipse?

I'm on Windows. I received the error when I type cordova build in the cmd. I found out the my build tools are not enough. How can I get the rest of the build tools?
wendy
  • 131
  • 7
0
votes
1 answer

Android studio Gradle BUILD SUCCESSFUL despite cannot resolve android.support.v4

Despite Gradle is telling me build succesfull (and I can run the app), android studio cannot resolve "import android.support.v4" and for the support.v7 lib can only resolve appcompat... I tried the button "Use Sync project with gradle files",…