Decreases support-annotation version to 22.0.0 to be able to compile …#24
Decreases support-annotation version to 22.0.0 to be able to compile …#24vogella wants to merge 0 commit into
Conversation
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project, in which case you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
|
I signed it! On Fri, May 15, 2015 at 5:27 PM, googlebot notifications@github.com wrote:
Geschäftsführer vogella GmbH Haindaalwisch 17a, 22395 Hamburg |
There was a problem hiding this comment.
Revert and add:
allprojects {
repositories {
jcenter()
}
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:22.1.0'
}
}
to espresso/BasicSample/build.gradle
Would be great if you could apply the same fix to all the individual samples which depend on support-annotations
|
I added a comment to your change on how to fix it. Basically the issue is the we force resolution for the top lvl build file but not for each sample. We didn't catch this regression on the build server because we always build from the root folder. |
To compile the "BasisSample" with Gradle I had to adjust the version of the support-annotations to 22.0.0.