Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.google.android.gms.location;
|
||||
|
||||
import android.app.PendingIntent;
|
||||
import android.location.Location;
|
||||
import android.os.Looper;
|
||||
import com.google.android.gms.common.api.GoogleApiClient;
|
||||
import com.google.android.gms.common.api.PendingResult;
|
||||
import com.google.android.gms.common.api.Status;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-location@@21.2.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
@Deprecated
|
||||
public interface FusedLocationProviderApi {
|
||||
|
||||
@Deprecated
|
||||
public static final String KEY_LOCATION_CHANGED = "com.google.android.location.LOCATION";
|
||||
|
||||
@Deprecated
|
||||
public static final String KEY_MOCK_LOCATION = "mockLocation";
|
||||
|
||||
PendingResult<Status> flushLocations(GoogleApiClient googleApiClient);
|
||||
|
||||
Location getLastLocation(GoogleApiClient googleApiClient);
|
||||
|
||||
LocationAvailability getLocationAvailability(GoogleApiClient googleApiClient);
|
||||
|
||||
PendingResult<Status> removeLocationUpdates(GoogleApiClient googleApiClient, PendingIntent pendingIntent);
|
||||
|
||||
PendingResult<Status> removeLocationUpdates(GoogleApiClient googleApiClient, LocationCallback locationCallback);
|
||||
|
||||
PendingResult<Status> removeLocationUpdates(GoogleApiClient googleApiClient, LocationListener locationListener);
|
||||
|
||||
PendingResult<Status> requestLocationUpdates(GoogleApiClient googleApiClient, LocationRequest locationRequest, PendingIntent pendingIntent);
|
||||
|
||||
PendingResult<Status> requestLocationUpdates(GoogleApiClient googleApiClient, LocationRequest locationRequest, LocationCallback locationCallback, Looper looper);
|
||||
|
||||
PendingResult<Status> requestLocationUpdates(GoogleApiClient googleApiClient, LocationRequest locationRequest, LocationListener locationListener);
|
||||
|
||||
PendingResult<Status> requestLocationUpdates(GoogleApiClient googleApiClient, LocationRequest locationRequest, LocationListener locationListener, Looper looper);
|
||||
|
||||
PendingResult<Status> setMockLocation(GoogleApiClient googleApiClient, Location location);
|
||||
|
||||
PendingResult<Status> setMockMode(GoogleApiClient googleApiClient, boolean z);
|
||||
}
|
||||
Reference in New Issue
Block a user