Results 70 comments of Dima Portenko
trafficstars

Ok, I think I was able to do upload like this ``` try { Map resultData = MediaManager.get().getCloudinary().uploader().uploadLarge(file, options, new ProgressCallback() { @Override public void onProgress(long bytesUploaded, long totalBytes) {...

@tommyg-cld can you share a code sample? Not sure how to use it. And I'm not able to find it in the documentation.

@tommyg-cld I'm completely confused. I'm using this one ``` String requestId = MediaManager.get().upload("imageFile.jpg").dispatch(); ``` but I have the error, please see the first message of the thread. And you asked...

Nope. `uploadLarge` return `Map` and it hasn't `dispatch` method.

Also, this one isn't working for signed request ``` MediaManager.get().getCloudinary().uploader().uploadLarge(file, options) ```

So I did more testing and I can confirm that unsigned upload works just fine. But signed request gives me a general error from the original message of this GitHub...

1. For dispatch, I'm doing the following ``` try { MediaManager.init(this.getReactApplicationContext(), new SignatureProvider() { @Override public Signature provideSignature(Map options) { return new Signature( uploadParams.getString("signature"), setupParams.getString("api_key"), uploadParams.getInt("timestamp") ); } @Override public...

> We're still waiting on news from the internal team. It's already a month passed already and no updates. It doesn't look like anybody working on this issue. > Could...