fresco
在我的项目中添加依赖项时遇到问题。
这里有一些问题的截图
问问题
1682 次
1 回答
3
你必须改变
compile 'com.facebook.fresco:fresco:0.8.1+'
和
compile 'com.facebook.fresco:fresco:0.8.1'
版本0.8.1+ 不存在。
我建议你避免使用,+
但如果你想使用它,你可以使用以下之一:
compile 'com.facebook.fresco:fresco:0.8.1'
compile 'com.facebook.fresco:fresco:0.8.+'
compile 'com.facebook.fresco:fresco:0.+'
compile 'com.facebook.fresco:fresco:+'
于 2016-01-17T16:32:47.103 回答