Cristiano Coelho

Results 298 comments of Cristiano Coelho

@jgreen210 isn't it just a matter of upgrading the jsc-android package? React Native uses a version by default, but an updated one can always be installed with npm. We would...

Any updates on this? These errors seem to be happening more and more frequently.

That's too bad, some projects like https://github.com/realm/realm-js are still postponing their hermes migration so we will be stuck with JSC at least until the end of the year.

Notification works, but if you want to "schedule a task" you will need to pass it to the java service somehow. A headless task might not be needed after all...

@Leroux47 you are right, that stack overflow questions is not really related. You don't want a foreground service for what you are trying to achieve there. As for the foreground...

@Leroux47 still took a look at your stack overflow issue, I hope that helped.

You don't put any code. The app basically keeps running in background if there's a foreground service running. Something even better is to run a headless task so the code...

Intervals and timers do not work in background, it doesn't matter how you do it, they just don't work, not even in a headless task. Just run a loop with...

@Yahyaali1 I'm not sure if you can run a headless task from a button press without implementing some native code. Definitely not from this library. However, you can achieve what...

@shacharbuda if you want to run a "task" on the service, and intend to keep running it even if the app is killed, the task needs to run in a...