android-geofence Questions

3

Is it possible to get the information on the location mode which the user has selected among the three modes under the location settings options i.e 1.Hight Accuracy 2.Battery Saving 3.GPS Only ...

0

Use case: When geofence triggers we need to contact server ASAP. We have solved this with an implicit BroadcastReceiver calling a Service for several years, but problematic in new versions due to ...

3

Here is the problem: Service that add geofences: public class GeofenceService extends Service implements GooglePlayServicesClient.ConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedL...
Waldner asked 4/7, 2014 at 9:53

1

Solved

Here are my code : Android Manifest <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="pounya.id.location3"> <use...
Olwen asked 31/3, 2018 at 3:40

2

Solved

I'm writing an application that needs to use geofencing for when someone enters/exits multiple sites over the lifetime of the application being installed. My implementation of geofencing (very si...

1

Solved

I am trying to create a geofence with background service for monitor. The geofence create successfully and work when apps Activity is open but when close the app geofence not work. What should I do...
Presbyterate asked 12/5, 2018 at 13:31

2

Solved

I am using Intent Service to monitor Geofence transition. For that I am using following call from a Sticky Service. LocationServices.GeofencingApi.addGeofences( mGoogleApiClient, getGeofencingR...

1

The new Geofencing API from Google is not triggering any of the events when the app is dead. I tried using PendingIntent.getBroadcast() and PendingIntent.getService() but only being able to get the...
Ophicleide asked 4/12, 2017 at 12:8

5

Solved

Hello I am trying to add feature of Geo Fence in Android. I am using the http://developer.android.com/training/location/geofencing.html for creating and monitoring Geo Fences. I am using the Intent...
Rutaceous asked 17/5, 2014 at 7:12

4

I have a problem understanding Androids geofences. Actual Problem: I used Enter+Exit events from googles geofence-api, but on many devices the signal is so inaccurate that it jumps in and out a fe...
Valenza asked 26/1, 2016 at 13:17

2

I have already gone through many SO posts , but nothing has worked yet for me. I am trying to trigger notification when device enters a geofence . But it does not trigger until app is opened. How w...
Hecto asked 31/7, 2017 at 18:9

3

Solved

I have an android application that uses Geofence and I'm having a hard time overcoming Doze mode. My manifest has the WAKE_LOCK permission and seven setNotificationResponsiveness to 0 for each regi...
Cowlick asked 12/6, 2017 at 17:26

1

Solved

SO I've created geofence as below: GeofenceModel modelExit = new GeofenceModel.Builder("id_oi_456") .setTransition(Geofence.GEOFENCE_TRANSITION_DWELL) .setExpiration(Geofence.NEVER_EXPIRE) .se...

1

Because of this bug my team is deciding to not use geofencing at all. Is geofencing in Android something that is usable or not? From the bug report: On all in-house test devices everything runs...
Ebro asked 6/2, 2017 at 21:52

6

I have started developing on Android with last Location services feature : Geofences !! Is there any known problem with mock location provider ? Following example here (https://developer.android.co...
Terrel asked 11/6, 2013 at 16:16

1

How to implement Geofence for tracking another users? I am developing an application which will track family members, and I want to implement Geofence feature which will enable user to do for ex: u...
Rounds asked 14/11, 2016 at 23:13

1

Everything builds correctly and runs in the emulator, but I cannot seem to get my IntentService to log anything. I'm sure there's something basic that I'm missing or overlooking, but I'm pretty new...
Afoul asked 11/8, 2016 at 16:40

1

Solved

According to the Android geofencing documentation one should re-register the geofences if the following cases occur: The device is rebooted. Solution: The app should store the geofences intern...
Contrarious asked 22/6, 2016 at 15:59

1

I have implemented the geoFence api and everything is working good. But there are some problems, I want more clarification regarding my confusions. Here are some of the confusions and problems: ...
Eleanoreleanora asked 1/6, 2016 at 9:55

1

Solved

According to the documentation, geofencing uses cellular network and wifi signal for detecting a location, but it seems like it doesn't work without a connected companion device. Does Android Wear...
Shocker asked 31/5, 2016 at 7:19

0

I want to retrieve a list of all the geofences currently active in the system. I have a list view in which there is a slider button to switch on and off each Geofence My problem is if the geofenc...
Shannan asked 13/5, 2016 at 7:23

1

Solved

I have an app that find the shortest distance between my user to a polygon. I want to convert the polygon to Geofence to check the distance between the user to the area to give mor accurate inform...
Apolitical asked 19/3, 2016 at 17:26

5

Solved

I've encountered this problem with the latest Android Geofence API. The usage is exact to the example usage. I set Geofence.GEOFENCE_TRANSITION_ENTER type geofence with 500m radius and expiration i...
Passionate asked 1/7, 2013 at 9:44

4

Solved

I'm about to implement a feature with geofences and before I get any serious work done, I need to know whether geofences remain active after the first transition. The core of the feature is: e...

1

Solved

I am creating Geozones on google map. Default Circle that map API provides is laggy when scroll the map. So, I wanted to create my own circle (overlay on map). I created circle with radius of 300 m...

© 2022 - 2024 — McMap. All rights reserved.