Muhammad Ehsan Mirzaei

Results 3 comments of Muhammad Ehsan Mirzaei

I found this in the document: `[PERSIST_MODE_ALL] | (DEFAULT) Persist both geofence and location events` But that didn't work. Do I set this `persistMode: 2`? That didn't work too

``` bg.BackgroundGeolocation.ready( bg.Config( pausesLocationUpdatesAutomatically: false, disableLocationAuthorizationAlert: true, reset: true, stopOnStationary: false, stopTimeout: 0, stopAfterElapsedMinutes: 0, desiredAccuracy: bg.Config.DESIRED_ACCURACY_NAVIGATION, distanceFilter: 100, stopOnTerminate: false, startOnBoot: true, debug: true, persistMode: 2, logLevel: bg.Config.LOG_LEVEL_VERBOSE, ),...

I set `stopAfterElapsedMinutes: 0` because I manually stop the background. For checking the database, I used this code `String log = await bg.Logger.getLog(bg.SQLQuery( start: DateTime.parse('2022-08-22 16:25'), end: DateTime.now()));` But geofence...