root build.gradle code
<code>
configure(getSubProjectList())
{
task testApp(type: GradleBuild) {
buildFile = 'build.gradle'
tasks = ['connectedAndroidTest']
startParameter.setContinueOnFailure(true) // this also passes
'--continue' explicitly but it is not helping anyway
}
}
def getSubProjectList() {
if (properties.containsKey('app')){
subprojects.findAll {
app.contains(it.name)
}
} else {
return []
}
}
</code>
--
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 [email protected].
For more options, visit https://groups.google.com/d/optout.