I update my glide to 4.3.1 but all over I use glide the feature .override() and .placeholder() get error: cannot find symbol method.>
.override()
.placeholder()
error: cannot find symbol method
Try This
Glide.with(this) .load(imageUrl) .apply(new RequestOptions().placeholder(R.drawable.ic_launcher).override(200, 200)) .into(ivAvatar);