Kevin Bloom
Kevin Bloom
@mathiasmoeller I was having the same issue and fixed it by registering another headless task in `index.js` for the event. Then I just have it run the same code as...
Sure! I use ClojureScript so it'll look kinda weird but you should be able to get the gist: Somewhere in `index.js` you'll need to add the headless task register ```...
@SufniDroid just like how react-native-boundary does it: ``` const HeadlessBoundaryEventTask = async ({event, ids}) => { console.log(event, ids); boundaryEventEmitter.emit(event, ids) }; ``` So in our case: ``` const HeadlessBoundaryEventTask =...
I hope that works for you guys! I still have yet to figure out iOS....
I know that the event gets triggered (if I put a breakpoint on the native code where the event gets triggered, it will stop there) but the code in the...
@cladjules please, keep us posted! :)
Just tested this ability with [react-native-background-geolocation](https://github.com/transistorsoft/react-native-background-geolocation) and it worked. So it's definitely possible! Their library is far more complicated than react-native-boundary, so getting it to work would be excellent. Not...
Thanks, @cladjules I'll be testing that out later today!
@cladjules your fixes worked!
@cladjules where should it be documented?