Hi
I am using Java SDK of Dropbox API v2 in my Android app. I use listFolder() to list the contents of the folder. This folder only has files in it, no sub folders.
ListFolderResult result = mDbxClient.files().listFolder(somePath);
I want 'result' to contain files ordered by:
1. Creation time on server
2. Name of file
How can I achieve this? Please help.