mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-27 13:43:00 +00:00
Add FusedLocationProvider stuff required for newer Google client libs
This commit is contained in:
parent
74f959ae92
commit
cfd7c4e70e
4 changed files with 55 additions and 0 deletions
|
@ -0,0 +1,3 @@
|
|||
package com.google.android.gms.location.internal;
|
||||
|
||||
parcelable FusedLocationProviderResult;
|
|
@ -0,0 +1,7 @@
|
|||
package com.google.android.gms.location.internal;
|
||||
|
||||
import com.google.android.gms.location.internal.FusedLocationProviderResult;
|
||||
|
||||
interface IFusedLocationProviderCallback {
|
||||
void onFusedLocationProviderResult(in FusedLocationProviderResult result) = 0;
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright 2013-2015 microG Project Team
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.android.gms.location.internal;
|
||||
|
||||
import com.google.android.gms.common.api.Status;
|
||||
|
||||
import org.microg.safeparcel.AutoSafeParcelable;
|
||||
import org.microg.safeparcel.SafeParceled;
|
||||
|
||||
public class FusedLocationProviderResult extends AutoSafeParcelable {
|
||||
public static final FusedLocationProviderResult SUCCESS = FusedLocationProviderResult.create(Status.SUCCESS);
|
||||
|
||||
@SafeParceled(1000)
|
||||
private int versionCode = 1;
|
||||
|
||||
@SafeParceled(1)
|
||||
public Status status;
|
||||
|
||||
public static FusedLocationProviderResult create(Status status) {
|
||||
FusedLocationProviderResult result = new FusedLocationProviderResult();
|
||||
result.status = status;
|
||||
return result;
|
||||
}
|
||||
|
||||
public static final Creator<FusedLocationProviderResult> CREATOR = new AutoCreator<FusedLocationProviderResult>(FusedLocationProviderResult.class);
|
||||
}
|
|
@ -20,6 +20,7 @@ import android.app.PendingIntent;
|
|||
|
||||
import com.google.android.gms.location.ILocationCallback;
|
||||
import com.google.android.gms.location.ILocationListener;
|
||||
import com.google.android.gms.location.internal.IFusedLocationProviderCallback;
|
||||
|
||||
import org.microg.safeparcel.AutoSafeParcelable;
|
||||
import org.microg.safeparcel.SafeParceled;
|
||||
|
@ -47,6 +48,9 @@ public class LocationRequestUpdateData extends AutoSafeParcelable {
|
|||
@SafeParceled(5)
|
||||
public ILocationCallback callback;
|
||||
|
||||
@SafeParceled(6)
|
||||
public IFusedLocationProviderCallback fusedLocationProviderCallback;
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "LocationRequestUpdateData{" +
|
||||
|
@ -55,6 +59,7 @@ public class LocationRequestUpdateData extends AutoSafeParcelable {
|
|||
", listener=" + listener +
|
||||
", pendingIntent=" + pendingIntent +
|
||||
", callback=" + callback +
|
||||
", fusedLocationProviderCallback=" + fusedLocationProviderCallback +
|
||||
'}';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue