Shane Parsons
Shane Parsons
+1 for smoother animation. It's pretty bad on mobile devices.
A couple of the workarounds here work, but cause duplication if the key matches the value. e.g. ``` case OTHER = 'OTHER'; ``` Results in: ``` OTHER, OTHER ```
Worked for me no problem.
try calling it like this: ```ts this.geofence.onTransitionReceived().subscribe((data) => { console.log(data); }); ```
Your missing an extra set of braces around `resp`... Not sure if it makes a difference but it's worth a try. I had it working yesterday with my code.
I set up the project according to [this](https://ionicframework.com/docs/native/geofence/). My environment is basically the latest version of everything.
Where are you calling `setGeofence()`? Here's my code: ```ts import { Injectable } from '@angular/core'; import { Events, Platform } from 'ionic-angular'; import { Geofence } from '@ionic-native/geofence'; @Injectable() export...
May be a separate issue than OP, but I'm seemingly having issues w/ `isDue` / `getNextRunDate` so I figured I'd post here. Here's are logs of mine that illustrate the...
@gatzjames I've since updated to `9.1.1`, but no, I'm not seeing this issue anymore.