Inside an Android App, I'm using the code below to list the contents of a folder
Drive.DriveApi.getFolder(mGoogleApiClient, driveId).listChildren(mGoogleApiClient).setResultCallback(listChildrenResultCallback);
While this lists contents uploaded by my app correctly, I do not see content created using the web UI.
Is this expected ?