I am trying to use this:
https://developers.google.com/drive/android/get-started
Which is the Google drive SDK for Android.
I want to be able to list all files in a users Google drive account. But only access is given to files and folders that the app created (or that the user selects).
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
Can Google Devs tell me if it is possible to List a users files and folders with this SDK, and retrieve metadata? Only SCOPE_FILE access is permitted.
If not, will more access be given in the future?
I have tried (and failed miserably) to use the Java Library but I cannot get it to work. So hopefully I can find out of the new SDK will include other permissions (which the Java library does).
Thanks