Same as this issue: robospock/RoboSpock#16
I did some initial debugging of RobospockAction.groovy
androidProject.dependencies.each {
androidProjectDependenciesList = it.configurationContainer.all.find {
it.name == 'compile'
}.getAllDependencies()
}
The type of each dependency is 'DefaultDependencyHandler_Decorated' which is not the same type as gradles 'DefaultDependencyHandler'. Not sure what is 'Decorating' the dependencyhandler but wondering if there is a different way to access all compile dependencies?