Files
gh-christianlouis-docuelevate/mobile/eas.json
copilot-swe-agent[bot] 4c8926a1fa fix(mobile): switch to remote appVersionSource for auto-incrementing build numbers
Change `appVersionSource` from `"local"` to `"remote"` in `eas.json` so EAS
tracks build numbers on its servers. This ensures every CI build gets a
unique, ever-increasing version without needing to commit bumps back to
the repo — fixing the App Store Connect "bundle version already used"
rejection.

Also bump `ios.buildNumber` to "7" and `android.versionCode` to 7 in
`app.json` (above the previously uploaded version "6") so the remote
version initializes correctly.

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
2026-03-16 16:57:52 +00:00

54 lines
1.1 KiB
JSON

{
"cli": {
"version": ">= 5.9.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"node": "20.19.4",
"env": {
"NODE_NO_WARNINGS": "1"
},
"ios": {
"image": "macos-sequoia-15.5-xcode-26.0"
}
},
"preview": {
"distribution": "internal",
"node": "20.19.4",
"env": {
"NODE_NO_WARNINGS": "1"
},
"ios": {
"simulator": false,
"image": "macos-sequoia-15.5-xcode-26.0"
}
},
"production": {
"autoIncrement": true,
"node": "20.19.4",
"env": {
"NODE_NO_WARNINGS": "1"
},
"ios": {
"image": "macos-sequoia-15.5-xcode-26.0"
}
}
},
"submit": {
"production": {
"ios": {
"appleId": "christianlouis@gmail.com",
"ascAppId": "6760611200",
"appleTeamId": "975U2ZESBM"
},
"android": {
"serviceAccountKeyPath": "./google-play-service-account.json",
"track": "production"
}
}
}
}