mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-05 02:25:05 +00:00
Add PeopleService interface
This commit is contained in:
parent
07e3208a26
commit
3243e7d3ec
3 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,7 @@ buildscript {
|
|||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:1.0.0'
|
||||
classpath 'com.android.tools.build:gradle:1.0.1'
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
package com.google.android.gms.people.internal;
|
||||
|
||||
interface IPeopleService {
|
||||
|
||||
}
|
|
@ -7,6 +7,7 @@ public class Constants {
|
|||
*/
|
||||
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_PEOPLE_SERVICE_START = "com.google.android.gms.people.service.START";
|
||||
public static final String KEY_MOCK_LOCATION = "mockLocation";
|
||||
public static final String DEFAULT_ACCOUNT = "<<default account>>";
|
||||
public static final String GMS_PACKAGE_NAME = "com.google.android.gms";
|
||||
|
|
Loading…
Reference in a new issue