try {
InputStream is = (InputStream) new URL(storage.getReferenceFromUrl(reference).getDownloadUrl().getResult().toString()).getContent();
d = BitmapFactory.decodeStream(is);
is.close();
} catch (Exception e) {
}
I'm trying to download multiples pictures from Firebase storage at the same time. Now I'm trying to do it this way after putting this method in a loop but it keeps giving me this error
E/StorageUtil: error getting token java.util.concurrent.ExecutionException: com.google.android.gms.internal.zzanu: Please sign in before trying to get a token.