MummyDing
MummyDing

Reputation: 615

can not resolve 'com.facebook.fresco:fresco:0.7.0+'

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+.":

Error Info

My development environment:
IDE Android Studio 1.2.1.1
OS: Ubuntu 15.04(64 bits)

Upvotes: 1

Views: 4154

Answers (1)

IntelliJ Amiya
IntelliJ Amiya

Reputation: 75788

You just remove the + symbol from your dependencies...

 compile 'com.facebook.fresco:fresco:0.7.0'

Upvotes: 3

Related Questions