In our project we'd like to get a list of all of the dependencies and their 
directories that we can iterate through.

On previous versions of Gradle to get a list of all the compiled AARs were 
using:
configurations.compile.asList()
>From that we could determine the root directory of the dependency and then 
figure out the assets directory from there.

After switching to Gradle wrapper 4.1, 3.0 beta plugin, and changing  
"compile" to "implementation", configurations.compile results in an empty 
list. 
Using configurations.implementation results in "Resolving configuration 
'implementation' directly is not allowed"

Is there a way that we can accomplish this using the latest version of 
Gradle?

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adt-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to