fix(mobile): add expo-dev-client, pin Node version, and fix EAS build config

- Add expo-dev-client ~5.0.0 to dependencies (required for developmentClient:true profile)
- Add node: 18.19.1 to all EAS build profiles (matches .nvmrc, silences version warning)
- Add appVersionSource: local to cli section in eas.json (silences future-required warning)
- Add ITSAppUsesNonExemptEncryption: false to ios.infoPlist in app.json (eliminates App Store Connect manual config warning)

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-14 13:51:50 +00:00
parent 5ff1413adf
commit 6834f3ef1b
3 changed files with 10 additions and 4 deletions
+2 -1
View File
@@ -18,7 +18,8 @@
"NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.", "NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.",
"NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.", "NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.",
"NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.", "NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.",
"UIBackgroundModes": ["fetch", "remote-notification"] "UIBackgroundModes": ["fetch", "remote-notification"],
"ITSAppUsesNonExemptEncryption": false
}, },
"buildNumber": "1" "buildNumber": "1"
}, },
+7 -3
View File
@@ -1,20 +1,24 @@
{ {
"cli": { "cli": {
"version": ">= 5.9.0" "version": ">= 5.9.0",
"appVersionSource": "local"
}, },
"build": { "build": {
"development": { "development": {
"developmentClient": true, "developmentClient": true,
"distribution": "internal" "distribution": "internal",
"node": "18.19.1"
}, },
"preview": { "preview": {
"distribution": "internal", "distribution": "internal",
"node": "18.19.1",
"ios": { "ios": {
"simulator": false "simulator": false
} }
}, },
"production": { "production": {
"autoIncrement": true "autoIncrement": true,
"node": "18.19.1"
} }
}, },
"submit": { "submit": {
+1
View File
@@ -24,6 +24,7 @@
"@react-navigation/native-stack": "^7.2.0", "@react-navigation/native-stack": "^7.2.0",
"expo": "~54.0.0", "expo": "~54.0.0",
"expo-auth-session": "~7.0.10", "expo-auth-session": "~7.0.10",
"expo-dev-client": "~5.0.0",
"expo-camera": "~17.0.10", "expo-camera": "~17.0.10",
"expo-constants": "~18.0.13", "expo-constants": "~18.0.13",
"expo-crypto": "~15.0.8", "expo-crypto": "~15.0.8",