Good time of day. I would like to create an application to view all the files in the google drive that are in the root folder. The problem is that I can set permissions only to create and view files or folders created by the application.

@Override protected void onResume() { super.onResume(); if (mGoogleApiClient == null) { mGoogleApiClient = new GoogleApiClient.Builder(this) .addApi(Drive.API) .addScope(Drive.SCOPE_FILE) .addScope(Drive.SCOPE_APPFOLDER) // required for App Folder sample .addConnectionCallbacks(this) .addOnConnectionFailedListener(this) .build(); } mGoogleApiClient.connect(); } 

But I need to look at the files that I put on Google drive from the browser (as far as I understand that the problem is in the distribution of access rights, but nowhere could I find it).

    0