You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 18, 2024. It is now read-only.
Using the Office 365 SDK for Android and Office 365 SDK for iOS, we plan to access the OneDrive Business and stored data in our product.
We find that: our app runs into an OOM when using Office 365 SDK to upload/download a large file(about 30M or more). Do you have any suggestion for this issue?
Here is our download code:
SharePointClient client = ODB_Manager.getInstance().getFileClient();
ListenableFuture<byte[]> future = client.getfiles().getById(id).asFile().addHeader("if-none-match", eTag).getContent();
Here is our upload code:
ListenableFuture future = client.getfiles().getById(item.getid()).asFile().putContent(result);
The text was updated successfully, but these errors were encountered:
Using the Office 365 SDK for Android and Office 365 SDK for iOS, we plan to access the OneDrive Business and stored data in our product.
We find that: our app runs into an OOM when using Office 365 SDK to upload/download a large file(about 30M or more). Do you have any suggestion for this issue?
Here is our download code:
SharePointClient client = ODB_Manager.getInstance().getFileClient();
ListenableFuture<byte[]> future = client.getfiles().getById(id).asFile().addHeader("if-none-match", eTag).getContent();
Here is our upload code:
ListenableFuture future = client.getfiles().getById(item.getid()).asFile().putContent(result);
The text was updated successfully, but these errors were encountered: