Skip to content

Commit 2ffb316

Browse files
committed
docs: improve iOS background modes documentation links
- Replace Xcode Help link with Apple's Configuration Guide - Add link to UIBackgroundModes property list documentation - Provide both practical configuration and technical reference links Fixes #633
1 parent 35b4573 commit 2ffb316

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/quickstart.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ iOS requires a 5-minute setup in Xcode. Choose your approach based on your needs
2828
#### Option A: Periodic Tasks (Recommended for most use cases)
2929
For regular data sync, notifications, cleanup - uses iOS Background Fetch:
3030

31-
1. **Enable Background Modes** in Xcode target capabilities ([Xcode Help](https://help.apple.com/xcode/mac/current/#/devbfa1532c4)) and add to Info.plist:
31+
1. **Enable Background Modes** in Xcode target capabilities ([Configuration Guide](https://developer.apple.com/documentation/xcode/configuring-background-execution-modes)) and add to Info.plist ([UIBackgroundModes reference](https://developer.apple.com/documentation/bundleresources/information-property-list/uibackgroundmodes)):
3232
```xml
3333
<key>UIBackgroundModes</key>
3434
<array>
@@ -45,7 +45,7 @@ For regular data sync, notifications, cleanup - uses iOS Background Fetch:
4545
#### Option B: Processing Tasks (For complex operations)
4646
For file uploads, data processing, longer tasks - uses BGTaskScheduler:
4747

48-
1. **Enable Background Modes** in Xcode target capabilities ([Xcode Help](https://help.apple.com/xcode/mac/current/#/devbfa1532c4)) and add to Info.plist:
48+
1. **Enable Background Modes** in Xcode target capabilities ([Configuration Guide](https://developer.apple.com/documentation/xcode/configuring-background-execution-modes)) and add to Info.plist ([UIBackgroundModes reference](https://developer.apple.com/documentation/bundleresources/information-property-list/uibackgroundmodes)):
4949
```xml
5050
<key>UIBackgroundModes</key>
5151
<array>
@@ -75,7 +75,7 @@ WorkmanagerPlugin.registerBGProcessingTask(
7575
#### Option C: Periodic Tasks with Custom Frequency
7676
For periodic tasks with more control than Background Fetch - uses BGTaskScheduler with frequency:
7777

78-
1. **Enable Background Modes** in Xcode target capabilities ([Xcode Help](https://help.apple.com/xcode/mac/current/#/devbfa1532c4)) and add to Info.plist:
78+
1. **Enable Background Modes** in Xcode target capabilities ([Configuration Guide](https://developer.apple.com/documentation/xcode/configuring-background-execution-modes)) and add to Info.plist ([UIBackgroundModes reference](https://developer.apple.com/documentation/bundleresources/information-property-list/uibackgroundmodes)):
7979
```xml
8080
<key>UIBackgroundModes</key>
8181
<array>

0 commit comments

Comments
 (0)