/* * Copyright 2013-2015 microG Project Team * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.android.gms.common; public class Scopes { public static final String PROFILE = "profile"; public static final String PLUS_LOGIN = "https://www.googleapis.com/auth/plus.login"; public static final String PLUS_ME = "https://www.googleapis.com/auth/plus.me"; public static final String GAMES = "https://www.googleapis.com/auth/games"; public static final String CLOUD_SAVE = "https://www.googleapis.com/auth/datastoremobile"; public static final String APP_STATE = "https://www.googleapis.com/auth/appstate"; public static final String DRIVE_FILE = "https://www.googleapis.com/auth/drive.file"; public static final String DRIVE_APPFOLDER = "https://www.googleapis.com/auth/drive.appdata"; public static final String FITNESS_ACTIVITY_READ = "https://www.googleapis.com/auth/fitness.activity.read"; public static final String FITNESS_ACTIVITY_READ_WRITE = "https://www.googleapis.com/auth/fitness.activity.write"; public static final String FITNESS_LOCATION_READ = "https://www.googleapis.com/auth/fitness.location.read"; public static final String FITNESS_LOCATION_READ_WRITE = "https://www.googleapis.com/auth/fitness.location.write"; public static final String FITNESS_BODY_READ = "https://www.googleapis.com/auth/fitness.body.read"; public static final String FITNESS_BODY_READ_WRITE = "https://www.googleapis.com/auth/fitness.body.write"; }