public final class

Drive

extends Object
java.lang.Object
   ↳ com.google.android.gms.drive.Drive

Class Overview

The Drive API provides easy access to users' Google Drive contents. This API includes Activities to open or create files in users' Drives, as well as the ability to programmatically interact with contents, metadata, and the folder hierarchy.

To use Drive, enable the API and at least one scope of SCOPE_FILE or SCOPE_APPFOLDER in a GoogleApiClient. DriveApi, provides the entry point for interacting with Drive.

Summary

Fields
public static final Api<Api.ApiOptions.NoOptions> API The API necessary to use Drive.
public static final DriveApi DriveApi The entry point for interacting with the Drive APIs which provides ways to access/update the files and folders in users Drive.
public static final DrivePreferencesApi DrivePreferencesApi The entry point for interacting with the Drive APIs which provides ways to access/update Drive preferences.
public static final Scope SCOPE_APPFOLDER A Scope that gives 'drive.appfolder' access to a user's drive.
public static final Scope SCOPE_FILE A Scope that gives 'drive.file' access to a user's drive.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public static final Api<Api.ApiOptions.NoOptions> API

The API necessary to use Drive. Provide this as an API to addApi(Api).

public static final DriveApi DriveApi

The entry point for interacting with the Drive APIs which provides ways to access/update the files and folders in users Drive.

public static final DrivePreferencesApi DrivePreferencesApi

The entry point for interacting with the Drive APIs which provides ways to access/update Drive preferences.

public static final Scope SCOPE_APPFOLDER

A Scope that gives 'drive.appfolder' access to a user's drive. This scope gives access to files that have been created by the app in the App Folder.

This scope can be provided in addScope(Scope)

public static final Scope SCOPE_FILE

A Scope that gives 'drive.file' access to a user's drive. This scope give per-file access to files that have been created by, or specifically opened with the app.

This scope can be provided in addScope(Scope)