Am 20.08.2013 um 14:35 schrieb Karel Piwko:
Do you know how Gradle stands for IDE support? Does it simplify
Android
Development for Eclipse/JBDS/IntelliJ?
IntelliJ + the new Android Studio use Gradle now, as it is the default from
side of Android.
If you create a new Android project in Android Studio, it will directly create
the build.gradle file for you (which currently is empty) and run the build by
calling gradle.
Gradle basically uses the same version resolution as maven, just in
a different format e.g.:
dependencies {
compile 'org.codehaus.jackson:jackson-core-asl:1.9.12'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.12'
compile 'org.jboss.aerogears:aearogears-andorid:1.1.0'
}
and also supports pushing them. See
http://www.gradle.org/docs/current/userguide/artifact_management.html
( and +1 for getting .aar files for Android library projects)