KI-AGENT: Mobile TestFlight Build vorbereiten

- EAS-Profil und Scripts für TestFlight ergänzt
- Node 22 für Mobile-Builds festgelegt und README aktualisiert
- Expo-SDK-Abhängigkeiten für expo-doctor angeglichen
This commit is contained in:
2026-05-20 19:44:24 +02:00
parent d182231448
commit bf8a3386d7
7 changed files with 252 additions and 249 deletions

View File

@@ -4,6 +4,7 @@
},
"build": {
"development": {
"node": "22.22.3",
"developmentClient": true,
"distribution": "internal",
"ios": {
@@ -11,13 +12,35 @@
}
},
"preview": {
"node": "22.22.3",
"distribution": "internal"
},
"testflight": {
"node": "22.22.3",
"distribution": "store",
"autoIncrement": true,
"env": {
"EXPO_PUBLIC_API_BASE": "https://app.fedeo.de/backend"
},
"ios": {
"simulator": false
}
},
"production": {
"node": "22.22.3",
"distribution": "store",
"env": {
"EXPO_PUBLIC_API_BASE": "https://app.fedeo.de/backend"
},
"autoIncrement": true
}
},
"submit": {
"production": {}
"testflight": {
"ios": {}
},
"production": {
"ios": {}
}
}
}