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 has been archived by the owner on Oct 2, 2024. It is now read-only.
final DefaultCallback<IOneDriveClient> callback = new DefaultCallback<IOneDriveClient>(activity) {...};
final IOneDriveClient oneDriveClient = new OneDriveClient.Builder()
.fromConfig(oneDriveConfig)
.loginAndBuildClient(getActivity(), callback);
The OneDriveClient.Builder.loginAndBuildClient function is now async, returning the IOneDriveClient in the given DefaultCallback. The sample code still expects a IOneDriveClient value returned from loginAndBuildClient however it's return type is now void.
A simple fix but confusing to first time readers.
The text was updated successfully, but these errors were encountered:
The sample code under the Get a OneDriveClient object section has the following
The
OneDriveClient.Builder.loginAndBuildClient
function is now async, returning theIOneDriveClient
in the givenDefaultCallback
. The sample code still expects aIOneDriveClient
value returned fromloginAndBuildClient
however it's return type is now void.A simple fix but confusing to first time readers.
The text was updated successfully, but these errors were encountered: