From 86793bd052883db5524fd00a6e890f39a94ecaa8 Mon Sep 17 00:00:00 2001 From: Abdulrahman-YE Date: Mon, 9 Jun 2025 22:41:41 +0300 Subject: [PATCH] fix(example): add iOS Expo Media Library permissions to prevent crash --- example/app.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/example/app.json b/example/app.json index 99519c9..178742b 100644 --- a/example/app.json +++ b/example/app.json @@ -29,6 +29,15 @@ "favicon": "./assets/favicon.png", "bundler": "metro" }, - "plugins": ["expo-router"] + "plugins": [ + "expo-router", + [ + "expo-media-library", + { + "photosPermission": "Allow $(PRODUCT_NAME) to access your photos.", + "savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos." + } + ] + ] } }