Gradle is a project build automation tool that uses a Groovy DSL. Gradle build scripts use Maven repositories for dependency management.
0
votes
0answers
15 views
AndroidAnnotations Nothing Generated, Empty Activity
I am trying to create a project using AndroidAnnotations in Android Studio. When I build and run the project, everything seems to compile fine, yet I get nothing but a blank activity for the app. In ...
0
votes
0answers
14 views
Include .so library in apk in android studio
I am trying my hands on developing a simple android application in which I am trying to use sqlcipher, which uses .so libraries internally. I have read the documentation on how to use sqlcipher with ...
0
votes
0answers
13 views
How to manually include external aar package using new Gradle Android Build System
I've been experimenting with the new android build system and I've run into a small issue. I've compiled my own aar package of ActionBarSherlock which I've called 'actionbarsherlock.aar'. What I'm ...
1
vote
0answers
30 views
Android Studio: Gradle build fails — Execution failed for task ':compileDebugAidl'
After changes to source and building with gradle in Android Studio (I/O preview) AI - 130.677228 the build fails with the following error:
Gradle:
FAILURE: Build failed with an exception.
* What ...
0
votes
1answer
22 views
Buck vs Gradle, pro's and cons for Android build systems
I'm currently using ant to build Android projects but it simply doesn't cut it for larger projects and maintaining different deliverables is becoming a pain.
Two alternatives I'm looking at are ...
1
vote
1answer
19 views
Gradle compileJava task warning: [options] bootstrap class path not set in conjunction with -source 1.6
Below is the content of the build.gradle file:
apply plugin: 'java'
archivesBaseName = 'foo-bar'
version = '1.0'
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = ...
0
votes
2answers
37 views
Android Studio: Are Library Project dependencies picked from project.properties?
I have imported my project from ADT and after going to "Module Settings" and editing dependencies things are working fine.
My "build.gradle" has dependencies block empty, So I am wondering from where ...
1
vote
0answers
14 views
Adding GooglePlay to Android Studio causes compile failure
I have a hello world type app that compiles fine in Android Studio. I want to bring in Google Maps to it. As soon as I add support into Android Studio and try to compile it gives me an error.
Here ...
0
votes
2answers
25 views
Gradle can't find dependency (Android support library)
I have a problem that Gradle can't find my dependency (Android support library).
My build.gradle looks like this:
buildscript {
repositories {
mavenCentral()
}
dependencies {
...
2
votes
2answers
60 views
Maven Dependencies with Android Studio / Gradle
I am using the Gradle build system bundled with Android Studio. So far, I am able to build multi-project setups using dependencies that are stored in my project structure. I would now like to use a ...
0
votes
1answer
74 views
Android studio, gradle and NDK
I am very new to this whole gradle and Android Studio support. I have managed to convert my android project to gradle using the export option.
But I am looking for some documentation or start point ...
1
vote
2answers
36 views
Convert Eclipse java project (with java source folder) to gradle project
I want to migrate all my java projects (223 projects) to gradle project.
I'm using the Gradle Eclipse plugin, developed by the SpringSource STS team.
Currently, all my java projets is strutured like ...
0
votes
1answer
22 views
How to execute task in Gradle?
I have the following project structure:
application
build.gradle
build.gradle
settings.gradle
application/build.gradle:
apply plugin: 'java'
settings.gradle:
include ':application'
...
0
votes
0answers
17 views
ADT error exporting with Gradle
I'm trying to export my android project from ADT using Gradle so that I can import into Android Studio.
I select Generate Gradle build files and select my project in the Export menu, but when I click ...
1
vote
1answer
22 views
Gradle, “sourceCompatibility” vs “targetCompatibility”?
What is the relationship/difference between sourceCompatibility and targetCompatibility? What happens when they are set to different values?
Accoording to Gradle documentation:
sourceCompatibility ...
0
votes
1answer
54 views
Android Studio and Gradle Living Together?
I'm poking around with the new Android Studio.
I have had no problem building (via an export/import) my project, but I have a question concerning how I can do things via the command line. I do not ...
2
votes
2answers
80 views
Gradle error with Android project added as a library (SlidingMenu) [package does not exist]
I've never used Gradle before so I'm completely lost!
I've added SlidingMenu as a library and I have access from my project to all the SlindingMenu stuff, but trying to compile will give me this ...
1
vote
1answer
99 views
Gradle errors in Android Studio
I imported an Android project from Eclipse to Andriod Studio, but when I compile, I get these errors. What do they mean?
Gradle: : org.gradle.api.plugins.PluginInstantiationException: Could not ...
0
votes
0answers
68 views
Robolectric with Gradle: Resources not found
I'm trying to run my Robolectric tests together with the new Gradle Android build system, but I'm stuck at accessing the resources of my main project.
I split the build into two separate projects to ...
0
votes
1answer
34 views
Setting the http port for gradle/ratpack on the command line
I am trying to run ratpack (https://github.com/pledbrook/lazybones/tree/master/src/templates/ratpack)
using "gradlew run" - this uses a default port, is there a way to set the port on the command ...
0
votes
2answers
23 views
getResourceAsStream() doesn't see resource
I want to unpack resources from my jar file. The structure of jar looks like this:
my.jar
META-INF
resources
my.exe
my.dll
my
namespace
...
0
votes
0answers
41 views
Android Studio/Gradle build can't find custom Application class
I'm using the new Android Studio and Gradle to build a test project. I set it up in the default way (new project wizard). Everything seems to work OK, except that I specify a custom Application ...
0
votes
1answer
18 views
gradle custom dependency resolution
Is it possible to bypass Ivy (or whatever else Gradle uses internally for dependency resolution) and still keep the same dependency DSL? I'm trying to develop a plugin for resolving native ...
0
votes
1answer
98 views
Generated Gradle Build Files for my project; Now getting noclassdeffounderror when I run
I recently generated Gradle build files for my Android application project in Eclipse for the sake of testing Android Studio. I went back to Eclipse and try to run my project. However, now none of my ...
0
votes
1answer
38 views
Specifying test dependencies with the Gradle Android build system
I want to specify dependencies for my tests and after reading the Gradle Dependency Management Basics I though I could just add testCompile calls to my dependency declarations like this:
dependencies ...
0
votes
1answer
21 views
Gradle equivalent of maven-dependency-plugin
My root problem is that when running "spring-test"-based tests for my controllers and Freemarker views I need to have all taglibs inside WEB-INF/lib folder - otherwise freemarker will not find them ...
0
votes
0answers
38 views
“Not enough storage available to process this command” - Gradle with Android plugin
I am having an issue when trying to build with Gradle with Android plugin. I am using Win 7 64 bit with 8GB RAM and Gradle 1.6 but "most of the time" when I tried to run "gradle build" from cmd, I ...
1
vote
1answer
595 views
Android Studio and Gradle dependency integration
I'm following this tutorial but with Android Studio. I have done the following steps:
Creating a new project in Android Studio
Adding the OpenCV-2.4.5-sdk/sdk/java as a module
Right clicked on my ...
3
votes
0answers
316 views
Android-Studio ActionBar sherlock error with gradle
Though i have imported and added ActionBar Sherlock to my project, I am not able to compile the project. I get the following error:
Gradle: No resource found that matches the given name (at ...
4
votes
5answers
1k views
Android studio and gradle build error
I've been using the new preview of android studio and really like it. But recently my project won't build. I get the following error:
Gradle:
FAILURE: Build failed with an exception.
* What went ...
0
votes
1answer
73 views
Android-Studio refresh project with build.gradle changes
how can I sync changes I made in the build.gradle into the project structure ( e.g. that AndroidStudio is recognizing the lib I added?
Kind of like the "reimport all maven projects" for maven projects ...
0
votes
0answers
16 views
Debug gradle jettyRun in IntelliJ
I run Jetty from the command line with:
export GRADLE_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=9999,server=y,suspend=n"
gradle jettyRun
and see:
Listening for transport dt_socket at ...
-1
votes
1answer
511 views
Android Studio + ActionBarSherlock = Gradle Error [closed]
I'm using new Android Studio. I want to use ActionBarSherlock so I downloaded it, extracted, imported as module, set dependencies etc. When I'm trying to compile project I see this error:
Of course ...
0
votes
2answers
138 views
Gradle: No resource identifier found for attribute 'android.onClick' in package 'android
I just installed the new Android Studio and am having some trouble as I follow the android developer training guide (http://developer.android.com/training/index.html).
Each time I try to compile my ...
2
votes
1answer
138 views
Gradle Configurations not Working as Expected in New Android Build System
Environment Configuration
com.android.tools.build:gradle:0.4
gradle version 1.6
jdk 1.6 (OSX)
android build tools version 17
compile sdk version 17
The issue that I seem to be having is that I ...
0
votes
1answer
17 views
Create gradle wrapper using newest stable Gradle version
I want to create a wrapper, who finds the newest stable version and to use it.
If it is 1.5 to download it and use it , if it is 1.7, then to download it.
Now using code like this doesn't works.
task ...
0
votes
1answer
257 views
Could not fetch model of type 'IdeaProject' using Gradle installation
i've downloaded and installed android studio with all required dependency like jdk1.7 and gradle 1.6. i am able to import the projects and modules quite comfortably in studio, but when i try to create ...
0
votes
0answers
29 views
Gradle remembers old source code
I want to create gradle custom task. The problem is that sometimes when I change something in source code, gradle shows error that in my code is error with that non existing code. For example I've ...
0
votes
0answers
23 views
Gradle android exception target cannot be null compileReleaseAidl
I have a build that uses actionbarsherlock, I have no idea why its failing. The error is
* What went wrong:
Execution failed for task ':actionbarsherlock:compileReleaseAidl'.
> target cannot be ...
1
vote
1answer
661 views
Gradle Error while creating new project with Android Studio
I just installed Google Android Studio which is introduced in Google IO 2013 and going to crate new Android Project with proper dependencies.
But after pressing finish , I got a pop-up where ...
0
votes
1answer
13 views
Get the classes folder for an off build process in gradle
I am building a script, I want to do this to build an array of folders to pass to another off gradle process as the class path. The first two lines work just fine, but the one on the bottom errors ...
-3
votes
0answers
526 views
Android studio, somebody help me solve the [closed]
Gradle:
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':AAAA:compileDebug'.
Compilation failed; see the compiler error output for details.
...
0
votes
0answers
66 views
Android setting up gradle build with dependancies
I'm trying to set up a project to build with gradle, i've not used it before so I've cobbled together what I read on android tools. I just want to be able to build the project via Main app with all ...
2
votes
3answers
437 views
Android Studio and using external library projects
I'm trying to include an external library project (SlidingMenulibrabry or ABS library) in the new Android Studio that Google released yesterday but I'm constantly getting errors with the Gradle like ...
0
votes
1answer
10 views
Gradle: Trying to figure out an EOF error. Userguide: Example 14.5. Configuring arbitrary objects using a script.
I am on page 78 of the gradle userguide: Example 14.5. Configuring arbitrary objects using a script.
I have copied all of the code in the example:
build.gradle
task configure << {
pos = ...
5
votes
4answers
340 views
Android-Studio : Error: Could not create the Java Virtual Machine
I have just installed Android - studio today. First I have to install jdk7 for this IDE.
After that only I was able to launch IDE.
Now When I am trying to create new project, just getting error as ...
0
votes
2answers
44 views
What is the best way to run integration tests using a web server?
As the title says, I'm interested in the best approaches of testing an application using a Jetty web server, taking in consideration that you don't want to start/stop the test server for each ...
2
votes
5answers
3k views
Android Studio error installing Gradle
When I try to build a project on Android Studio, I get this error:
Compilation completed with 1 error and 0 warnings in 9 sec
1 error
0 warnings
org.gradle.tooling.GradleConnectionException: Could ...
0
votes
0answers
17 views
How to Exclude directory and its contents in gradle war
I am using gradle war plugin, I am trying to exclude some directories inside WEB-INF directory while packing a war, but the excludes don't seem to work.
This is what I have
war {
webInf {
...
3
votes
3answers
776 views
Gradle fails to build ActionBarSherlock
I'm using new Android studio, based on IDEA, and trying to build project with ABS library in dependencies for the main module.
And I'm getting errors:
Gradle: package com.actionbarsherlock.app does ...


