In our build.gradle android dependancies we have:
androidTestCompile(project(':forklift:espresso-additions')) {
transitive = false
}
androidTestCompile(project(':americano:library')) {
exclude group: 'com.google.guava', module: 'guava'
exclude group: 'com.android.support', module: 'support-v4'
}
yet after syncing Gradle we end up with:
androidTestCompile(project(':forklift:espresso-additions')) {
transitive = false
}
androidTestCompile(project(':americano:library')) {
exclude group: 'com.google.guava', module: 'guava'
exclude group: 'com.android.support', module: 'support-v4'
}
compile project(':americano:library')
compile project(':forklift:espresso-additions')
Notice how we now have the americano:library and
forklift-espresso-additions projects in the project now.
This began happening after upgrading to Gradle tools to 0.14.0.
--
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.