17 lines
565 B
Java
17 lines
565 B
Java
package com.google.android.gms.location;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target({ElementType.TYPE_USE})
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes.dex */
|
|
public @interface Priority {
|
|
public static final int PRIORITY_BALANCED_POWER_ACCURACY = 102;
|
|
public static final int PRIORITY_HIGH_ACCURACY = 100;
|
|
public static final int PRIORITY_LOW_POWER = 104;
|
|
public static final int PRIORITY_PASSIVE = 105;
|
|
}
|