- Add eas.json with development, preview, and production profiles - Link project to EAS (projectId: 93c75cae-fecf-4ce5-8cd8-c823760b12e2) - Add expo-dev-client, expo-constants, expo-linking dependencies - Remove eas-cli from project deps (use globally) - Add ITSAppUsesNonExemptEncryption to iOS infoPlist - Use catalog react with expo.install.exclude to skip version check - Fix slug to match EAS project registration - Run pnpm dedupe to resolve duplicate react across workspaces Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
393 B
JSON
24 lines
393 B
JSON
{
|
|
"cli": {
|
|
"version": ">= 18.0.0",
|
|
"appVersionSource": "remote"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"simulator": true
|
|
}
|
|
},
|
|
"preview": {
|
|
"distribution": "internal"
|
|
},
|
|
"production": {
|
|
"autoIncrement": true
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {}
|
|
}
|
|
}
|