From 357b4fd2ee80a21e8a915ab6a4dbab2f01215e52 Mon Sep 17 00:00:00 2001
From: Valentin GEGOUX <44845299+Valegox@users.noreply.github.com>
Date: Tue, 23 Dec 2025 09:52:12 +0100
Subject: [PATCH 1/2] Update README with UIBackgroundModes instructions
Added UIBackgroundModes section to README for Expo usage.
---
README.md | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 41dd46b..76c3f7b 100644
--- a/README.md
+++ b/README.md
@@ -136,9 +136,18 @@ To set up, specify your API key in the application delegate `ios/Runner/AppDeleg
```
-## Usage
+#### [Expo] Add UIBackgroundModes
-### Initializing Navigation
+In order to use guidance features, add the following to your ``Info.plist``:
+```
+UIBackgroundModes
+
+ location
+ audio
+
+```
+
+## Initializing Navigation
Wrap application with the `NavigationProvider` component. This will provide the necessary context for navigation throughout your app.
```tsx
From 4ed256d740282e607ab60032fb078ea0d0282cc3 Mon Sep 17 00:00:00 2001
From: Valentin GEGOUX <44845299+Valegox@users.noreply.github.com>
Date: Tue, 23 Dec 2025 09:54:58 +0100
Subject: [PATCH 2/2] Fix README
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 76c3f7b..137f757 100644
--- a/README.md
+++ b/README.md
@@ -147,7 +147,9 @@ In order to use guidance features, add the following to your ``Info.plist``:
```
-## Initializing Navigation
+## Usage
+
+### Initializing Navigation
Wrap application with the `NavigationProvider` component. This will provide the necessary context for navigation throughout your app.
```tsx