Files
Kordant/packages/mobile/eas.json
Michael Freno 6a8d3648d8 feat: add EAS build config and app store asset structure (FRE-4572)
- Create eas.json with development, preview, and production build profiles
- Add submit configuration for iOS App Store and Google Play
- Create app store metadata with listing copy, keywords, and requirements
- Add screenshot capture guides for iOS and Android
- Add marketing asset directory structure
2026-05-17 11:38:29 -04:00

59 lines
1.1 KiB
JSON

{
"cli": {
"version": ">= 10.0.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"resourceClass": "m1-medium"
},
"android": {
"buildType": "apk"
},
"env": {
"NODE_ENV": "development"
}
},
"preview": {
"distribution": "internal",
"ios": {
"simulator": true,
"resourceClass": "m1-medium"
},
"android": {
"buildType": "apk"
},
"env": {
"NODE_ENV": "development"
}
},
"production": {
"ios": {
"resourceClass": "m1-medium"
},
"android": {
"buildType": "app-bundle"
},
"env": {
"NODE_ENV": "production"
}
}
},
"submit": {
"production": {
"ios": {
"ascAppId": "shieldai-app-id",
"appleId": "apple@frenocorp.com",
"appleTeamId": "FRENOCORP-TEAM-ID"
},
"android": {
"serviceAccountKeyPath": "./google-play-service-account.json",
"track": "internal"
}
}
}
}