-
Notifications
You must be signed in to change notification settings - Fork 79
plugin breaks lint on new versions of android plugin #33
Comments
As you can see in build.gradle we do not have a direct dependency on guava.
Looks like Android Lint relies on guava 15.0. |
I see the following exception
This means that lint directly uses guava in ApiLookup method. However, there is not guava in their pom file. |
My current workaround is classpath('com.stanfy.spoon:spoon-gradle-plugin:0.14.1') {
exclude module: 'guava'
}
classpath 'com.google.guava:guava:17.0' With this configuration
works for example in this repo. @andaag please close if it works for you |
Works! Might be worth it to update the Readme.md or the sample, I'd imagine other people might run into this as well :) Thank you very much for your help :) |
README updated in de86098. |
When using the workaround above (which fixes the lint issue), Spoon does not work anymore with multiple devices are attached. One device still works though. More info at #36 |
Hi
See this thread : https://groups.google.com/forum/#!topic/adt-dev/ezM6RmO_ADY
We tracked it down to this plugin. If we remove that lint works fine.
The text was updated successfully, but these errors were encountered: