Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,18 @@ To set up, specify your API key in the application delegate `ios/Runner/AppDeleg

```

#### Configure Background Modes

To receive location updates and provide turn-by-turn voice guidance while the app is in the background, add the following to your `Info.plist`:

```xml
<key>UIBackgroundModes</key>
<array>
<string>location</string>
<string>audio</string>
</array>
```

## Usage

### Initializing Navigation
Expand Down