Closed rocks860 closed 5 years ago
Question irrelevant to this lib. Wish you good luck on finding your solution.
That's a fair point. I need to use fromFile in my fragment class to implement this loop: for (int i = 0; i < arrayListImageFile.size(); i++) { Uri uri = Uri.fromFile(arrayListImageFile.get(i)); uploadMethod(uri, i); } urilist is already a uri so it won't work here.
How do we upload images after selecting them? How do we loop through the images uris so that we can save them in realtime database? I have tried it this way https://pastebin.com/jn2k5Pi6 but it only uploads the last one.