Google Drive SDK - Drive Scopes
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