Simple method to use Glide to load images and solve java.lang.NoClassDefFoundError

//直接使用'com.github.bumptech.glide:glide:4.9.0'报错
    //java.lang.NoClassDefFoundError: Failed resolution of: Lcom/bumptech/glide/request/RequestOptions;
    api("com.github.bumptech.glide:glide:4.9.0@aar") {
        transitive = true
    }
Glide.with(context) .load(list.get(i).getImageUrl())//设置图片的加载路径  .placeholder(R.mipmap.loading)//设置正在加载中的图片  .error(R.mipmap.empty)//设置加载错误显示的图片  .into(imageView);//设置给谁

Guess you like

Origin blog.csdn.net/zhao8856234/article/details/96277997#comments_25273117