fusedlocationproviderapi Questions

2

Within our Android app we are using Google Maps API in order to show the users location. At the moment we are using Koin in order to provide a parametered injection (it requires an activity) of the...
Ridenour asked 16/7, 2019 at 8:45

0

The Fused Location Provider API seems to be broken on the Android Automotive Emulator image Sv2 (API 32, arm64-v8a, with Play Store). Does anyone know of a workaround? It's the only Automotive OS i...

1

I am debugging a location aware application and I would like to get a list of Geofences that are currently being monitored by the system -- even if I can only see Geofences for my own package(s). T...
Resemblance asked 3/4, 2015 at 17:17

3

Solved

I would like to know if it is possible to clear the "location" that is stored by play service's fused location API. When testing my app on a real device, I would like to recreate few scenarios and ...
Laflam asked 12/6, 2016 at 19:38

2

Solved

I have an app which has been live for a couple of years now, but lately, I've been getting reports about the location system not functioning properly. I have tracked the issue down to the LocationC...

2

Solved

With FusedLocationProviderApi being deprecated, I'm having a hard time using FusedLocationProviderClient to get location of a user just once after a button click.
Germanophile asked 28/12, 2017 at 6:12

1

I'm trying to get mock updates from FusedLocationProviderApi, but I can't seem to make it work. This my set up method in android instrumentation test: locationProvider = new LocationProvider(Instr...

3

Solved

I am trying to request a new location with FusedLocationProviderClient and Kotlin Coroutines. This is my current setup: class LocationProviderImpl(context: Context) : LocationProvider, CoroutineSc...

5

Solved

According to the Android documentation: The Google Location Services API, part of Google Play Services, provides a more powerful, high-level framework that automatically handles location provi...

14

I am trying to get location by using FusedLocationApi.getLastLocation and I've got the location permissions in the manifest file: <uses-permission android:name="android.permission.ACCESS_COARSE...

1

I am using SettingsApi and FusedLocationProvider to upgrade Gps settings and getting location updates, I want High accuracy location updates for that I am showing Turn on gps dialog using SettingsA...

13

In my android app i want to get user current location every few minute interval and update in to my center server using web service. Currently i am using Fused Location Provide for get user c...
Assentation asked 16/2, 2015 at 6:30

2

Solved

A data collection app that used LocationManager directly was updated to use FusedLocationProviderApi. With LocationManager, most devices quickly report 5m accuracy or better when collecting locatio...
Kimono asked 14/3, 2018 at 23:28

6

Solved

I'm attempting to follow the Android Receiving Location Updates tutorial. The example code is here on Github. Everything is working except for this line: LocationServices.FusedLocationApi.request...
Glacialist asked 10/3, 2015 at 0:52

0

I have created simple class to get updated location using google's FusedLocationProviderClient. i.e.: public class LocationProvider extends LocationCallback {... private static FusedLocationProvi...

0

Problem: I have tried using the new FusedLocationProviderClient and the deprecated FusedLocationApi to receive location updates on my app using a Sony Xperia Z2 and Huawei Honor 8. Everything w...

1

Solved

i am trying to get user's location in background using service. I am using FusedLocationProviderClient for complete this task and i am doin all this thing in my service class. I am providing two ...
Kanara asked 5/3, 2018 at 16:51

5

I want to get location updates on a "background service" using latest fused location provider client.I don't want to use the location listeners and Google API Client that all are using. I also need...

2

Solved

I'm using fused location provider in my app which is set to PRIORITY_HIGH_ACCURACY at an interval of 60 seconds. This usually works but sometimes the location doesn't update for 5 to 10 minutes by ...
Enmity asked 17/1, 2017 at 18:14

2

Solved

I am trying to create a service that will receive location updates every x sec and after y distance. I receive updates after x sec but never after y distance. I have tested it multiple times with d...

4

I am developing an application where I want to use Fused Location Provider. But I have some doubts, and couple of questions. When GPS is off and I set priority to HIGH, does that mean that the GP...
Isotonic asked 28/6, 2016 at 9:57

2

Solved

In our app we used the Fused Location Provider (FLP) to track location. We've noticed that occasionally the app can get into a state where the location callback stops getting called. The app in que...

0

I'm using FusedLocationAPI it is working properly but when user disabled location i'm using SettingsApi to show dialog to user to enable location. In marshmallow and above devices it is working f...

1

I have an Android app that gets location: private LocationRequest createLocationRequest() { LocationRequest mLocationRequest = new LocationRequest(); mLocationRequest.setInterval(120000); mLoca...

4

Solved

Every once in a while I get: Unfortunately, MyApp has stopped. Problem is easy to solve if you have some logs, but in my case logcat has absolutely no message of error (it has normal messages ...
Kashakashden asked 8/9, 2015 at 10:41

© 2022 - 2024 — McMap. All rights reserved.