我得到了一个问题,在安卓应用程序,我试图检查已经存在的应用程序,应用程序包含
implementation('com.squareup.picasso:picasso:3.0.0-SNAPSHOT') {
exclude group: 'com.android.support'
}
毕加索图书馆
在类中使用这个库,下面是代码
import com.squareup.picasso.Picasso;
Picasso.with().load(url).placeholder(R.drawable.default_pic).into(imageView);
这里有个错误 Error:(49, 20) error: cannot find symbol method with()
我的机器人工作室版本是3.0 RC1,这是一个问题吗?