i just started to play with the gradle build system for Android.
However i\'m not able build one of my projects. It depends on a jar in the libs/ folder.
Doi
just found the answer myself:
Seems like the current version of the Android Gradle plugin doesn't look for jars in the libs/ folder. So you have to add them yourself:
dependencies {
compile files('libs/mylib.jar')
}
or
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
Place this within the android namespace like this:
android {
target = "android-15"
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
}