I'm using firebase to sign in with facebook, G+ and twitter, everything is alright until I need to get the user profile picture, I'm using the getPhotoURl method and it retrieves me an image in very low quality.
Glide.with(this).load(currentUser.getPhotoUrl() != null ? currentUser.getPhotoUrl().toString() : "").into(ivDisplayPhoto);
Is there a way using Firebase to get the profile picture in a better quality?