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.
Glide.with(this)
.load(imageUrl)
.override(200, 200)
.placeholder(R.drawable.ic_avatar_sign_up)
.into(ivAvatar);
How can I fix this?