Michael Coffey

Results 4 comments of Michael Coffey

I was getting this error and fixed it by running `az extension update --name azure-devops` which I saw on this post [Downloading artifacts from Azure DevOps](https://vanwollingen.nl/downloading-artifacts-from-azure-devops-universal-package-feed-fails-with-az-error-unrecognized-a34cca8c2aed). Hope that helps.

Hello, friends! And happy anniversary to this bug! So I found that the problem is that fresco declares its dependency on the infer annotations library as compileOnly. To remove the...

Also, this could be fixed in fresco by declaring infer as a `compileOnlyApi` dependency as described [here](https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_configurations_graph)

@cuibg I'm no expert on Infer, but it looks like it's a static analysis tool and therefore its annotations aren't required at runtime. This is why fresco doesn't include them...