Download from Firebase storage + ContentResolver (API >= 29)
问题 I am trying to connect ContentResolver and Firebase Storage downloads. Goal: download the files from Firebase storage either into the image gallery or to audio folder. What I did: ContentValues values = new ContentValues(); values.put(MediaStore.MediaColumns.DISPLAY_NAME, "FileName1"); values.put(MediaStore.MediaColumns.MIME_TYPE, "image/jpeg"); values.put(MediaStore.MediaColumns.RELATIVE_PATH, "Pictures" + customDir); AsyncQueryHandler asyncQueryHandler1 = new AsyncQueryHandler