/** * Copyright 2017 Google Inc. All Rights Reserved. * * 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.sample.locationupdatespendingintent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.location.Location; import android.util.Log; import com.google.android.gms.location.LocationResult; import java.util.List; /** * Receiver for handling location updates. * * For apps targeting API level O * {@link android.app.PendingIntent#getBroadcast(Context, int, Intent, int)} should be used when * requesting location updates. Due to limits on background services, * {@link android.app.PendingIntent#getService(Context, int, Intent, int)} should not be used. * * Note: Apps running on "O" devices (regardless of targetSdkVersion) may receive updates * less frequently than the interval specified in the * {@link com.google.android.gms.location.LocationRequest} when the app is no longer in the * foreground. */ public class LocationUpdatesBroadcastReceiver extends BroadcastReceiver { private static final String TAG = "LUBroadcastReceiver"; static final String ACTION_PROCESS_UPDATES = "com.google.android.gms.location.sample.locationupdatespendingintent.action" + ".PROCESS_UPDATES"; @Override public void onReceive(Context context, Intent intent) { if (intent != null) { final String action = intent.getAction(); if (ACTION_PROCESS_UPDATES.equals(action)) { LocationResult result = LocationResult.extractResult(intent); if (result != null) { List<Location> locations = result.getLocations(); Utils.setLocationUpdatesResult(context, locations); Utils.sendNotification(context, Utils.getLocationResultTitle(context, locations)); Log.i(TAG, Utils.getLocationUpdatesResult(context)); } } } } }