答案 0 :(得分:2)
你必须改变
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:+'