Files
self/app/version.json
jayssj11 73a70251d1 Fix/deployment track and paths (#808)
* fix: correct Android AAB path and iOS TestFlight distribution settings

Android fix:
- Change AAB path from '../android/...' to 'android/...'
- The gradle task runs with project_dir: 'android/' from app/ directory
- So the AAB is created at app/android/app/build/outputs/bundle/release/
- The path should be relative to app/ not app/fastlane/

iOS fix:
- Remove distribute_external: true and groups for internal track
- Internal TestFlight builds cannot use external distribution
- Internal testers are managed in App Store Connect, not via groups
- This fixes 'Cannot add internal group to a build' error

Both issues were preventing successful deployments after PR merges.

* fix: update iOS build number to sync with TestFlight

- TestFlight already has build 151 (manually deployed by team)
- Update version.json to 151 so pipeline will increment to 152
- This prevents 'build number must be greater' error
2025-07-29 15:54:09 +08:00

11 lines
124 B
JSON

{
"ios": {
"build": 151,
"lastDeployed": null
},
"android": {
"build": 82,
"lastDeployed": null
}
}