Reputation: 615
I want to import Fresco library into my project ,so I add the following line to the dependencies section of my build.gradle file:
compile 'com.facebook.fresco:fresco:0.7.0+'
and then I build the project , but It failed with "Could not resolve <br>com.facebook.fresco:fresco:0.7.0+.
":
My development environment:
IDE Android Studio 1.2.1.1
OS: Ubuntu 15.04(64 bits)
Upvotes: 1
Views: 4154
Reputation: 75788
You just remove the + symbol from your dependencies...
compile 'com.facebook.fresco:fresco:0.7.0'
Upvotes: 3