Open
Description
I'm using
FileEntity entity = new FileEntity(fileToUpload, mimeType);
Header[] headers = { new BasicHeader("x-amz-acl", "public-read") }; // For uploading to S3
getClient().put(mApplication, signedUrl, headers, entity, mimeType, new AsyncHttpResponseHandler() {
@Override
public void onProgress(int bytesWritten, int totalSize) {
// Displays the progress bar for the first time.
mNotifyManager.notify(notificationId, mBuilder.build());
mBuilder.setProgress(totalSize, bytesWritten, false);
}
});
And onProgress not being fired.