Build-tools are tools designed to help and automate the process of compiling, packaging and deploying software.
Questions tagged [build-tools]
421 questions
0
votes
1 answer
Using build tools for Java
So I am almost programming for 3 years I guess, just for fun.
I learned to program in Java and I still do. I was always used to let Eclipse build my code by clicking 'Run' and I don't really get why things like Maven, Ant and Gradle are used.
Now I…

Ruben de Groot
- 59
- 8
0
votes
3 answers
The SDK platform-tools version (24.0.3) is too old to check APIs compiled with API 25 [Warning]
I know this has been asked on SO many times but not able to get it solved for me.
Main Project Gradle
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
…

android_griezmann
- 3,757
- 4
- 16
- 43
0
votes
1 answer
Can't open Ionic Framework compiled project in Android Studio
I'm currently working on Ionic Framework based Android App. I've complete setup of Android Studio & Android SDK.
Android Studio 2.2.2
Android SDK Tools 25.2.2
Android SDK Platfrom Tools 25.0.0
Android SDK Build Tools 25.0.0
Android SDK Platform 24…

Kasim Rangwala
- 1,765
- 2
- 23
- 44
0
votes
1 answer
Android Studio causing issue after SDK update installation failed
I have tried to updating my SDK and after downloading some how installation failed.
I have also tried to re-install Android Studio.
I have already installed all build-tool versions.
Now I am not able to run any project as my studio not detecting…

android_sh
- 171
- 2
- 12
0
votes
1 answer
JSPM Builder: How to depend on other module?
I have the following config for my JSPM Build using a TypeScript compiler:
var Builder = require('jspm').Builder;
var builder = new Builder('.');
builder.reset();
builder.loadConfig('./jspm.conf.js')
.then(function() {
…

Nicky
- 3,607
- 6
- 33
- 64
0
votes
1 answer
Can Cmake's Cpack package custom targets built by external build tools?
I have a cmake file generated by an external tool that is of this form:
set(SOURCE_FILES ....)
add_custom_target(target1 ${build_tool} param SOURCES ${SOURCE_FILES})
add_custom_target(target2 ${build_tool} param SOURCES ${SOURCE_FILES})
...
so…
user6335789
0
votes
1 answer
Simplest way to compile java source from terminal?
What's the simplest way to compile java source files without an IDE?
I'm mainly using Java for algorithms, and these questions don't really need full fledged project environments. Although being able to import some reusable classes would be nice.…

user1164937
- 1,979
- 2
- 21
- 29
0
votes
0 answers
Can I use gradle:2.2.0-alpha2 with build-tools 24.0.0 rc4 ?
is there any way how to use gradle:2.2.0-alpha2 with build-tools 24.0.0 rc4 ? I used gradle:2.2.0-alpha3 but there is an bug which cause invalid apk-signing so i can not upload new version of my app to GP. The solution is to use older version of…

Tom Wayne
- 1,288
- 1
- 12
- 31
0
votes
1 answer
Execution failed for task ':library:proguardRelease'
I just updated sdk and android studio i have this problem:
Error:Execution failed for task ':library:proguardRelease'.
> java.lang.NullPointerException (no error message)
How can i solve this?
Can i go home?

Marcin Bortel
- 1,190
- 2
- 14
- 28
0
votes
0 answers
Added support for build variants causes RuntimeExceptions in only Activity's onStart()
So, I had a working app and decided to create 2 build variants. One Debug and one Release build for their respectful logging using Timber. I abstracted out my Application class and provided 2 concrete implementations within the 2 new build variant…

Christopher Rucinski
- 4,737
- 2
- 27
- 58
0
votes
1 answer
android 6 won't run in v23 (build-tools)
My app works on most androids, but in all the devices that run android 6.x.x it stops work at the splashscreen
I've installed the v23 build tools, I've this…

rjcpereira
- 943
- 4
- 17
0
votes
2 answers
Visual Studio 2015 Community: Setup Failed! Installation Error
I am trying to install Visual Studio 2015 Community (with updates) on Windows 7 x64, but in the start of the installation, when it is about to install Build Tools 14.0 (x86) it fails. I do not know why this happens and i have tried to find answers…

Jonatan Strömberg
- 1
- 1
- 3
0
votes
1 answer
Can nodemon be used on file relocation (instead of modification)?
I have files in the following folder structure:
Can I setup Nodemon to restart when .primary is moved to another folder (typically a sibling folder, at same level)?
Example:
Move .primary:
fromapp/en_160x600_PROG_RESID_Children
to…

chamberlainpi
- 4,854
- 8
- 32
- 63
0
votes
2 answers
How do you find an Android module by name in AOSP?
I am building AOSP Kitkat (4.4) and trying to find the Android.mk file that defines the libnfc-nci module. The libnfc_nci_jni module depends on this local shared library (Android.mk included below) and I want to see the source that generates this…

John Dempsey
- 124
- 7
0
votes
2 answers
Material Theme resource not found
i have a project and everything worked until i added Mikepenz Material Drawer library. it seems to use the Material Themes which should be present but are not.
Error message while building gradle: Error retrieving parent for item: No resource…

yooneskh
- 784
- 7
- 11