diff --git a/apps/stage-tamagotchi/src-tauri/Entitlements.plist b/apps/stage-tamagotchi/src-tauri/Entitlements.plist
new file mode 100644
index 000000000..afd31904e
--- /dev/null
+++ b/apps/stage-tamagotchi/src-tauri/Entitlements.plist
@@ -0,0 +1,10 @@
+
+
+
+
+ com.apple.security.device.camera
+
+ com.apple.security.device.audio-input
+
+
+
diff --git a/apps/stage-tamagotchi/src-tauri/Info.plist b/apps/stage-tamagotchi/src-tauri/Info.plist
index f6d8a967f..1acd23c01 100644
--- a/apps/stage-tamagotchi/src-tauri/Info.plist
+++ b/apps/stage-tamagotchi/src-tauri/Info.plist
@@ -2,6 +2,8 @@
+ NSCameraUsageDescription
+ Request camera access
NSMicrophoneUsageDescription
Request microphone access
diff --git a/apps/stage-tamagotchi/src-tauri/tauri.conf.json b/apps/stage-tamagotchi/src-tauri/tauri.conf.json
index 730f9a339..5f8f8a328 100644
--- a/apps/stage-tamagotchi/src-tauri/tauri.conf.json
+++ b/apps/stage-tamagotchi/src-tauri/tauri.conf.json
@@ -28,6 +28,9 @@
],
"resources": {
"infoplist/**/*": "./"
+ },
+ "macOS": {
+ "entitlements": "./Entitlements.plist"
}
}
}