what-the-bank/sources/com/google/android/gms/location/Granularity.java

16 lines
500 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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 Granularity {
public static final int GRANULARITY_COARSE = 1;
public static final int GRANULARITY_FINE = 2;
public static final int GRANULARITY_PERMISSION_LEVEL = 0;
}