Sebastian Roth

Results 205 comments of Sebastian Roth
trafficstars

Taking some notes for myself: ``` flutter create -t plugin --platforms ios,android,macos --org be.tramckrijte --project-name workmanager . ```

Part of the issue is the plugins current APIs. `registerPeriodicTask` is indeed not working on iOS, because there is no equivalent. The new BG task APIs support scheduling background work...

@AbanoubWagih94 please share a repro project so that I can take a look.

@qbait can you please take logs using `pidcat` or `adb logcat` and post them here? Also, a sample project would be super useful. Finally, please send details on your phone,...

In the WorkManager docs, we can see for `onStopped`: > This method is invoked when this Worker has been told to stop. At this point, the ListenableFuture returned by the...

What if you have multiple background workers running, won't the input data be overridden for each? Or, inputData from task A is available on task B (which is unintended)

@AdamBridges what did you find out? I would be looking for storing input data in a hash table, specific to the supplied uniqueTaskName.

We need more logs for this bug.. can you please run add logcat and from beginning to end and post the entire logs? Are the jobs still running?

iOS Background processing is slightly varied. Are you trying to submit a task using a specific ID and is the ID registered according to the instructions in the README? Remember...

Please add a PR for missing docs