From f2862b7bf7bcb04d278ab8f92985a8d51d6989c4 Mon Sep 17 00:00:00 2001
From: Jonas Lieske <60880883+Jonas-Lieske@users.noreply.github.com>
Date: Wed, 13 Nov 2024 15:54:07 +0100
Subject: [PATCH] docs(camera): Added Android 14 permission note
Tested on multiple Android 14 devices and an Android 13 device. takePhoto() now requires the Camera permission to correctly prompt the user about the usage.
---
camera/README.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/camera/README.md b/camera/README.md
index 49a48d096..48f7dcdc1 100644
--- a/camera/README.md
+++ b/camera/README.md
@@ -44,7 +44,12 @@ Older devices and Android Go devices running Android 11 or 12 that support Googl
If that entry is not added, the devices that don't support the Photo Picker, the Photo Picker component fallbacks to `Intent.ACTION_OPEN_DOCUMENT`.
-The Camera plugin requires no permissions, unless using `saveToGallery: true`, in that case the following permissions should be added to your `AndroidManifest.xml`:
+Beginning from Android 14, the Camera plugin now requires the Camera permission in the `AndroidManifest.xml` file:
+```xml
+
+```
+
+If using `saveToGallery: true`, the following permissions should be added to your `AndroidManifest.xml`:
```xml