python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Geofencing api not working in android with pending intent
I'm trying to implement simple geofence app but its not getting triggered at all.
here is the code of what I've done so far -
class GeoFencingHelper(context: Context, private val task: Task, private v...
Divyanshu
Votes: 0
Answers: 1
Geofence is not created without enabling 'Improve Location Accuracy'
We are building an application that runs on Automotive OS in cars. Trying to build a geofence which the car exits, we want to do something.
I notice that fence is created only when 'Improve Location A...
cgr
Votes: 0
Answers: 1
Geofence Data is empty on transition
I setup a geofence which gets triggered as expected, when the device exits the radius. However the geofencing event is completely empty.
override fun onReceive(context: Context, intent: Intent) {
...
jpm
Votes: 0
Answers: 1
FLAG_IMMUTABLE is causing wrong behaviour
Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent.
Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if so...
Ahmad Albatsh
Votes: 0
Answers: 0