From af1543135d42adc2e97dc5243aeef7418cd3b00d Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sat, 07 Mar 2026 08:39:26 +0100
Subject: [PATCH] feat: dual address auto-switch, custom icon, notifications, image support
---
app.json | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/app.json b/app.json
index 1d0fbe4..ef9c6c9 100644
--- a/app.json
+++ b/app.json
@@ -5,7 +5,7 @@
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
- "userInterfaceStyle": "dark",
+ "userInterfaceStyle": "automatic",
"newArchEnabled": true,
"scheme": "pailot",
"splash": {
@@ -19,7 +19,8 @@
"appleTeamId": "7KU642K5ZL",
"infoPlist": {
"NSMicrophoneUsageDescription": "PAILot needs microphone access for voice input.",
- "NSSpeechRecognitionUsageDescription": "PAILot uses speech recognition to convert your voice to text.",
+ "NSPhotoLibraryUsageDescription": "PAILot needs photo library access to send images.",
+ "NSCameraUsageDescription": "PAILot needs camera access to take photos.",
"UIBackgroundModes": [
"audio"
]
@@ -34,7 +35,9 @@
},
"package": "org.mnsoft.pailot",
"permissions": [
- "RECORD_AUDIO"
+ "RECORD_AUDIO",
+ "READ_MEDIA_IMAGES",
+ "CAMERA"
]
},
"web": {
@@ -49,14 +52,14 @@
"microphonePermission": "PAILot needs microphone access for voice input."
}
],
+ "expo-secure-store",
[
- "expo-speech-recognition",
+ "expo-image-picker",
{
- "microphonePermission": "PAILot needs microphone access for voice input.",
- "speechRecognitionPermission": "PAILot uses speech recognition to convert your voice to text."
+ "photosPermission": "PAILot needs photo library access to send images.",
+ "cameraPermission": "PAILot needs camera access to take photos."
}
- ],
- "expo-secure-store"
+ ]
]
}
}
--
Gitblit v1.3.1