Pokhraj Kumar Sah
Results
1
issues of
Pokhraj Kumar Sah
storageReference = mRef.child("Images").child(mAuth.getCurrentUser().getUid()).child(image_name); UploadTask uploadTask = storageReference.putBytes(data); uploadTask.continueWithTask(new Continuation() { @Override public Task then(@NonNull Task task) throws Exception { return storageReference.getDownloadUrl(); } }).addOnCompleteListener(new OnCompleteListener() { @Override public void onComplete(@NonNull Task...