[Solved] Download image from firebase to external sd Card using url [closed]

first of all create database ref and a File like this StorageReference downloadRef = FirebaseStorage.getInstance().getReference().child(“Wall/” + category + “https://stackoverflow.com/” + wall_id + “.jpg”); File localFile = null; try { String fileName = wall_id + “.jpg”; localFile = new File();//create your file with desired path } catch (Exception e) { e.printStackTrace(); } than call getFile on … Read more