Search code examples
androidandroid-glide

Glide won't load in image


See below. The photo loads in originally but Glide won't load it back upon going back into the Settings Activity.

Initially when the user selects an image to go into the ImageView, The image goes in and is saved to my Firebase storage and the URL is passed to the database. Here is the code:

if(map.get("profileImageUrl")!=null){
    profileImageUrl = map.get("profileImageUrl").toString();
    Glide.with(SettingsActivity.this).load(profileImageUrl).into(mProfileImage);
}

Solution

  • The issue was I had imported the wrong version of the file Glide from GitHub. I went and got it from there and my App worked perfect.