This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GETTING IMAGE PATHS FROM PHONE GALLERY IN ARRAYLIST(STRING TYPE) | |
private synchronized void UploadToFireBaseStorage(ArrayList<String> filePath,int type) { | |
String uploadFolder = null; | |
String attachmentType = null; | |
final ArrayList<String> multipleImages = new ArrayList<>(); | |
Log.d(TAG,"Size of File at Upload Method "+filePath.size()); | |
switch (type){ | |
case 0: | |
uploadFolder = "Photos"; |