HttpFileUploadManager add methods to upload InputStream

Now that android is pushing to use “content:” URIs that can only be opened as InputStream I suggest to add new methods to HttpFileUploadManager:

public URL uploadFile(InputStream fis, String fileName, long fileSize)

and

public URL uploadFile(InputStream fis, String fileName, long fileSize, UploadProgressListener listener)

Existing methods can re-use the stream ones.

1 Like

Thanks, created SMACK-867.

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.