Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save talosdev/7fb8770356b5bbd4b9eee47065b052ee to your computer and use it in GitHub Desktop.
Save talosdev/7fb8770356b5bbd4b9eee47065b052ee to your computer and use it in GitHub Desktop.
Solve the issue with transitive dependencies, especially with support-annotations.
/*
Resolves dependency versions across test and production APKs, specifically, transitive
dependencies. This is required since Espresso internally has a dependency on support-annotations.
*/
configurations.all {
resolutionStrategy.force "com.android.support:support-annotations:23.1.1"
}
@talosdev
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment