All Questions
425 questions
0
votes
1
answer
69
views
How to add OnProgressListener for Firebase Storage File Downloadings?
I am trying to create a method for downloading my 3D files stored in the Firebase Storage with OnProgressListener and show the downloaded percentage for the user with a progressBar, but it is not ...
0
votes
2
answers
25
views
Is it possible to delete 2 storage references at the same time Android Firebase?
I'm building a program that needs the ability to delete an image and video at the same time for when updating a new image and new video, but doing it with 1 delete process.
StorageReference mPicRef = ...
0
votes
0
answers
46
views
How to use firebase storage in spring mvc for upload image
I have configured firebase realtime database and firebase storage but only the realtime database can be used and when I use the storage it gives me a 401 unauthorized error.
com.google.cloud.storage....
0
votes
0
answers
19
views
Unable to display picture from firebase database, I'm able to store data in database, they are stored in form:com.google.android.gms.tasks.zzw@7726d68 [duplicate]
The getdownloadurl method is deprecated , I'm able to store data in database, they are stored in form:com.google.android.gms.tasks.zzw@7726d68 ,Unable to display picture from firebase database, I am ...
0
votes
0
answers
63
views
Previewing PDF from Firebase storage using barteksc's pdf viewer
a starter here, i am creating a app where users can upload and download E books and notes.. I'm using Firebase as the only database.
to preview a pdf, using barteksc's PDF view, i am passing uri to
...
0
votes
0
answers
26
views
Recyclerview is not showing while fetching from the firebase storage
i am trying to fetch the data from the firebase storage which is generally some audio file, i just try to fetch into recyclerview but recycler view is not showing. why my recycler view is not showing, ...
0
votes
1
answer
45
views
how to run an asynchronous method in java firebase
I want to store user's detail into firebase database but I want to first store an image into storageRef and then use the image url that is being returned as my profile image link before final ...
0
votes
1
answer
117
views
Android Firebase Storage: getFile() fails and creates a file of 0 bytes
I am using Firebase APIs on Android (SDK 34) to download files from my storage bucket to my shared Download folder. However, when I call StorageReference.getFile(Uri uri), it fails after creating a 0 ...
0
votes
2
answers
55
views
I can't get access to the file or 'READ_EXTERNAL_STORAGE' by Karumi Dexter. It is working till Sdk-32 properly but it's not working on 33
Function for choosing video .
private void ChooseVideo(){
Dexter.withContext(this)
.withPermission(Manifest.permission.READ_EXTERNAL_STORAGE)
.withListener(new ...
0
votes
1
answer
52
views
Message "The files could not be uploaded because the quota for this project has been exceeded" on Firebase Storage
A few hours ago I uploaded a video on Firebase Storage of 80 mb, now I got this message "The files could not be uploaded because the quota for this project has been exceeded" and I can no ...
0
votes
2
answers
51
views
I can't apply glide with firebase storage
I can get link with this, i tested with realtime database on firebase but i'cant use link as a String.but when i write like Glide.with(this).load("link").into(imageView);
public void run() {...
0
votes
1
answer
476
views
StorageException has occurred. Object does not exist at location. Code: -13010 HttpResult: 404 in firestore
I am trying to upload the image on firestore. The photo is uploading successfully but I can't download the image url. I don't understand where is the problem.
My code is:
ActivityResultLauncher<...
0
votes
1
answer
46
views
I got java.lang.NoClassDefFoundError for FirebaseStorage on Android Plugin
I'm working with FirebaseStorage on a plugin model.
I was able to make it work on a standalone android app, but when I try to add it to a plugin, I get the java.lang.NoClassDefFoundError
Here is my ...
0
votes
1
answer
56
views
Can't Assign A String value in Android Studio
My codes are to:
Select a local Mp3 Uri
Upload it to Firebase
then retrieve that mp3 metadata such as name, artist, album cover,...
Upload the album cover to Firebase
Create a new object in the ...
1
vote
1
answer
1k
views
Recommended way to run firebase firestore / storage locally in standalone application
As the title suggests, I've been trying to make an offline version of my web application that makes use of Firestore and Cloud Storage.
I've been trying to make the emulator suite run locally and I've ...