Override must be accessed via RequestOptions in the most recent version of Glide 4.x. You can add RequestOptions through apply()
Glide.with(context)
.load(path)
.apply(new RequestOptions().override(600, 200))
.into(imageViewResizeCenterCrop);