|
4 | 4 |
|
5 | 5 | This plugin is compatible with **Swift 4.2** and up. Make sure you are using **Xcode 10.3** or higher and have set your minimum deployment target to **iOS 10** or higher by defining a platform version in your podfile: `platform :ios, '10.0'`
|
6 | 6 |
|
| 7 | + |
| 8 | +## Enable BGTaskScheduler |
| 9 | + |
| 10 | +> ⚠️ BGTaskScheduler is similar to Background Fetch described below and brings a similar set of constraints. Most notably, there are no guarantees when the background task will be run. Excerpt from the documentation: |
| 11 | +> |
| 12 | +> Schedule a processing task request to ask that the system launch your app when conditions are favorable for battery life to handle deferrable, longer-running processing, such as syncing, database maintenance, or similar tasks. The system will attempt to fulfill this request to the best of its ability within the next two days as long as the user has used your app within the past week. |
| 13 | +
|
| 14 | + |
| 15 | + |
| 16 | +This will add the **UIBackgroundModes** key to your project's `Info.plist`: |
| 17 | + |
| 18 | +``` xml |
| 19 | +<key>UIBackgroundModes</key> |
| 20 | +<array> |
| 21 | + <string>processing</string> |
| 22 | +</array> |
| 23 | +``` |
| 24 | + |
| 25 | +Additionally, you must configure the background task identifiers. The default identifier is `workmanager.background.task` in the host Apps Info.plist: |
| 26 | + |
| 27 | +``` xml |
| 28 | +<key>BGTaskSchedulerPermittedIdentifiers</key> |
| 29 | +<array> |
| 30 | + <string>workmanager.background.task</string> |
| 31 | +</array> |
| 32 | +</plist> |
| 33 | +``` |
| 34 | + |
| 35 | +And will set the correct *SystemCapabilities* for your target in the `project.pbxproj` file: |
| 36 | + |
| 37 | +``` |
| 38 | +SystemCapabilities = { |
| 39 | + com.apple.BackgroundModes = { |
| 40 | + enabled = 1; |
| 41 | + }; |
| 42 | +}; |
| 43 | +``` |
| 44 | + |
| 45 | +## Testing BGTaskScheduler |
| 46 | + |
| 47 | +Follow the instructions on https://developer.apple.com/documentation/backgroundtasks/starting_and_terminating_tasks_during_development. |
| 48 | + |
| 49 | +The exact command to trigger the WorkManager default BG Task is: |
| 50 | + |
| 51 | +``` |
| 52 | +e -l objc -- (void)[[BGTaskScheduler sharedScheduler] _simulateLaunchForTaskWithIdentifier:@"workmanager.background.task"] |
| 53 | +``` |
| 54 | + |
7 | 55 | ## Enabling Background Fetch
|
8 | 56 |
|
9 |
| -> ⚠️ Background fetch this is currently the *only* supported way to do background work on iOS with work manager: **One off tasks** or **Periodic tasks** are available on Android only for now! (see #109) |
| 57 | +> ⚠️ Background fetch is one supported way to do background work on iOS with work manager: **Periodic tasks** are available on Android only for now! (see #109) |
10 | 58 |
|
11 | 59 | Background fetching is very different compared to Android's Background Jobs.
|
12 | 60 | In order for your app to support Background Fetch, you have to add the *Background Modes* capability in Xcode for your app's Target and check *Background fetch*:
|
@@ -72,7 +120,7 @@ Here is an example of a Flutter entrypoint called `callbackDispatcher`:
|
72 | 120 |
|
73 | 121 | ```dart
|
74 | 122 | void callbackDispatcher() {
|
75 |
| - Workmanager.executeTask((task, inputData) { |
| 123 | + Workmanager().executeTask((task, inputData) { |
76 | 124 | switch (task) {
|
77 | 125 | case Workmanager.iOSBackgroundTask:
|
78 | 126 | stderr.writeln("The iOS background fetch was triggered");
|
@@ -105,7 +153,7 @@ If you launched your app using the Flutter command line tools or another IDE lik
|
105 | 153 | To make background work more visible when developing, the WorkManager plugin provides an `isInDebugMode` flag when initializing the plugin:
|
106 | 154 |
|
107 | 155 | ```dart
|
108 |
| -Workmanager.initialize(callbackDispatcher, isInDebugMode: true) |
| 156 | +Workmanager().initialize(callbackDispatcher, isInDebugMode: true) |
109 | 157 | ```
|
110 | 158 |
|
111 | 159 | If `isInDebugMode` is `true`, a local notification will be displayed whenever a background fetch was triggered by iOS. In the example gif below, two background fetches were *simulated* in quick succession. Both completing succesfully after a few seconds in this case:
|
|
0 commit comments