Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Add FusedLocationProvider stuff required for newer Google client libs
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored and mar-v-in committed Jul 8, 2016
1 parent 74f959a commit cfd7c4e
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.google.android.gms.location.internal;

parcelable FusedLocationProviderResult;
Original file line number Diff line number Diff line change
@@ -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;
}
Original file line number Diff line number Diff line change
@@ -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);
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

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;
Expand Down Expand Up @@ -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{" +
Expand All @@ -55,6 +59,7 @@ public String toString() {
", listener=" + listener +
", pendingIntent=" + pendingIntent +
", callback=" + callback +
", fusedLocationProviderCallback=" + fusedLocationProviderCallback +
'}';
}

Expand Down

0 comments on commit cfd7c4e

Please sign in to comment.