0
0
Fork 0
mirror of https://github.com/YTVanced/VancedMicroG synced 2025-01-06 23:41:01 +00:00

Location: Add forceCoarseLocation flag

This commit is contained in:
Marvin W 2017-01-18 17:27:38 +01:00
parent bfae24a17c
commit 3dabc13028
No known key found for this signature in database
GPG key ID: 072E9235DB996F2A

View file

@ -49,6 +49,9 @@ public class LocationRequestInternal extends AutoSafeParcelable {
@SafeParceled(7) @SafeParceled(7)
public boolean hideFromAppOps; public boolean hideFromAppOps;
@SafeParceled(8)
public boolean forceCoarseLocation;
@Override @Override
public String toString() { public String toString() {
return "LocationRequestInternal{" + return "LocationRequestInternal{" +
@ -59,6 +62,7 @@ public class LocationRequestInternal extends AutoSafeParcelable {
", clients=" + clients + ", clients=" + clients +
", tag='" + tag + '\'' + ", tag='" + tag + '\'' +
", hideFromAppOps=" + hideFromAppOps + ", hideFromAppOps=" + hideFromAppOps +
", forceCoarseLocation=" + forceCoarseLocation +
'}'; '}';
} }