Matthias Nott
2026-03-07 af1543135d42adc2e97dc5243aeef7418cd3b00d
app.json
....@@ -5,7 +5,7 @@
55 "version": "1.0.0",
66 "orientation": "portrait",
77 "icon": "./assets/icon.png",
8
- "userInterfaceStyle": "dark",
8
+ "userInterfaceStyle": "automatic",
99 "newArchEnabled": true,
1010 "scheme": "pailot",
1111 "splash": {
....@@ -19,7 +19,8 @@
1919 "appleTeamId": "7KU642K5ZL",
2020 "infoPlist": {
2121 "NSMicrophoneUsageDescription": "PAILot needs microphone access for voice input.",
22
- "NSSpeechRecognitionUsageDescription": "PAILot uses speech recognition to convert your voice to text.",
22
+ "NSPhotoLibraryUsageDescription": "PAILot needs photo library access to send images.",
23
+ "NSCameraUsageDescription": "PAILot needs camera access to take photos.",
2324 "UIBackgroundModes": [
2425 "audio"
2526 ]
....@@ -34,7 +35,9 @@
3435 },
3536 "package": "org.mnsoft.pailot",
3637 "permissions": [
37
- "RECORD_AUDIO"
38
+ "RECORD_AUDIO",
39
+ "READ_MEDIA_IMAGES",
40
+ "CAMERA"
3841 ]
3942 },
4043 "web": {
....@@ -49,14 +52,14 @@
4952 "microphonePermission": "PAILot needs microphone access for voice input."
5053 }
5154 ],
55
+ "expo-secure-store",
5256 [
53
- "expo-speech-recognition",
57
+ "expo-image-picker",
5458 {
55
- "microphonePermission": "PAILot needs microphone access for voice input.",
56
- "speechRecognitionPermission": "PAILot uses speech recognition to convert your voice to text."
59
+ "photosPermission": "PAILot needs photo library access to send images.",
60
+ "cameraPermission": "PAILot needs camera access to take photos."
5761 }
58
- ],
59
- "expo-secure-store"
62
+ ]
6063 ]
6164 }
6265 }