Add FusedLocationProvider stuff required for newer Google client libs

This commit is contained in:
Thibaut Girka 2016-07-07 18:50:14 +02:00 committed by Marvin W
parent 74f959ae92
commit cfd7c4e70e
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
4 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,3 @@
package com.google.android.gms.location.internal;
parcelable FusedLocationProviderResult;

View File

@ -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;
}

View File

@ -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);
}

View File

@ -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 +
'}';
}