To upload in Android I am using
sDbxClient.files().uploadBuilder(pathName)
.withMode(WriteMode.OVERWRITE)
.uploadAndFinish(inputStream);
which returns, what? The docs say it returns the server response as a "R". How do I extract the file metadata from the server response to uploadAndFinish? I want to get the server modified time from it.
I am looking for something equivalent to what I do in Objective-C, where is use the completion block of uploadData:mode:autorename:clientModified:mute:inputData:.