Skip to content

Commit 357b4fd

Browse files
authored
Update README with UIBackgroundModes instructions
Added UIBackgroundModes section to README for Expo usage.
1 parent d3745c9 commit 357b4fd

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,18 @@ To set up, specify your API key in the application delegate `ios/Runner/AppDeleg
136136

137137
```
138138
139-
## Usage
139+
#### [Expo] Add UIBackgroundModes
140140
141-
### Initializing Navigation
141+
In order to use guidance features, add the following to your ``Info.plist``:
142+
```
143+
<key>UIBackgroundModes</key>
144+
<array>
145+
<string>location</string>
146+
<string>audio</string>
147+
</array>
148+
```
149+
150+
## Initializing Navigation
142151
Wrap application with the `NavigationProvider` component. This will provide the necessary context for navigation throughout your app.
143152
144153
```tsx

0 commit comments

Comments
 (0)