15 lines
445 B
Java
15 lines
445 B
Java
|
package com.google.android.gms.location;
|
||
|
|
||
|
@Deprecated
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class LocationStatusCodes {
|
||
|
public static final int ERROR = 1;
|
||
|
public static final int GEOFENCE_NOT_AVAILABLE = 1000;
|
||
|
public static final int GEOFENCE_TOO_MANY_GEOFENCES = 1001;
|
||
|
public static final int GEOFENCE_TOO_MANY_PENDING_INTENTS = 1002;
|
||
|
public static final int SUCCESS = 0;
|
||
|
|
||
|
private LocationStatusCodes() {
|
||
|
}
|
||
|
}
|