Using Android studio version 0.1.3 and version 0.4.2 of the android gradle plugin. I noticed that its not pulling in sources for any of my dependencies. i used a third party android plugin before on eclipse that did that and usually with maven you can configure it to do that too. Anyone know how you can enable the android plugin or android studio to pull sources and javadoc for artifacts?
Another issue that i'm having is i've created a configuration for provided scope like this
configurations {
provided
}
android.applicationVariants.each { variant ->
variant.javaCompile.classpath += configurations.provided
}
Which works perfectly in gradle but android studio is not adding this to its classpath. Anyone know how to get around that? I've tried the idea gradle plugin like this
idea {
module {
downloadJavadoc = true
downloadSources = true
scopes.PROVIDED.plus += configurations.provided
}
}
but it doesn't work without the java plugin when trying to modify scopes. Also the settings for downloading javadoc and sources didn't work either
I'm really disappointed in how badly android studio and new gradle build system fits together, really want to switch but at this rate its just not a reality