0
0
Fork 0
mirror of https://github.com/YTVanced/VancedMicroG synced 2024-11-05 02:25:05 +00:00

Add PeopleService interface

This commit is contained in:
mar-v-in 2015-02-10 15:29:44 +01:00
parent 07e3208a26
commit 3243e7d3ec
3 changed files with 7 additions and 1 deletions

View file

@ -3,7 +3,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.0.0' classpath 'com.android.tools.build:gradle:1.0.1'
} }
} }

View file

@ -0,0 +1,5 @@
package com.google.android.gms.people.internal;
interface IPeopleService {
}

View file

@ -7,6 +7,7 @@ public class Constants {
*/ */
public static final int MAX_REFERENCE_VERSION = 6599436; public static final int MAX_REFERENCE_VERSION = 6599436;
public static final String ACTION_GMS_LOCATION_MANAGER_SERVICE_START = "com.google.android.location.internal.GoogleLocationManagerService.START"; public static final String ACTION_GMS_LOCATION_MANAGER_SERVICE_START = "com.google.android.location.internal.GoogleLocationManagerService.START";
public static final String ACTION_GMS_PEOPLE_SERVICE_START = "com.google.android.gms.people.service.START";
public static final String KEY_MOCK_LOCATION = "mockLocation"; public static final String KEY_MOCK_LOCATION = "mockLocation";
public static final String DEFAULT_ACCOUNT = "<<default account>>"; public static final String DEFAULT_ACCOUNT = "<<default account>>";
public static final String GMS_PACKAGE_NAME = "com.google.android.gms"; public static final String GMS_PACKAGE_NAME = "com.google.android.gms";