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:
+2
-1
@@ -18,7 +18,8 @@
|
||||
"NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.",
|
||||
"NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.",
|
||||
"NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.",
|
||||
"UIBackgroundModes": ["fetch", "remote-notification"]
|
||||
"UIBackgroundModes": ["fetch", "remote-notification"],
|
||||
"ITSAppUsesNonExemptEncryption": false
|
||||
},
|
||||
"buildNumber": "1"
|
||||
},
|
||||
|
||||
+7
-3
@@ -1,20 +1,24 @@
|
||||
{
|
||||
"cli": {
|
||||
"version": ">= 5.9.0"
|
||||
"version": ">= 5.9.0",
|
||||
"appVersionSource": "local"
|
||||
},
|
||||
"build": {
|
||||
"development": {
|
||||
"developmentClient": true,
|
||||
"distribution": "internal"
|
||||
"distribution": "internal",
|
||||
"node": "18.19.1"
|
||||
},
|
||||
"preview": {
|
||||
"distribution": "internal",
|
||||
"node": "18.19.1",
|
||||
"ios": {
|
||||
"simulator": false
|
||||
}
|
||||
},
|
||||
"production": {
|
||||
"autoIncrement": true
|
||||
"autoIncrement": true,
|
||||
"node": "18.19.1"
|
||||
}
|
||||
},
|
||||
"submit": {
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"@react-navigation/native-stack": "^7.2.0",
|
||||
"expo": "~54.0.0",
|
||||
"expo-auth-session": "~7.0.10",
|
||||
"expo-dev-client": "~5.0.0",
|
||||
"expo-camera": "~17.0.10",
|
||||
"expo-constants": "~18.0.13",
|
||||
"expo-crypto": "~15.0.8",
|
||||
|
||||
Reference in New Issue
Block a user