mirror of
https://github.com/selfxyz/self.git
synced 2026-02-21 03:00:36 -05:00
* 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
11 lines
124 B
JSON
11 lines
124 B
JSON
{
|
|
"ios": {
|
|
"build": 151,
|
|
"lastDeployed": null
|
|
},
|
|
"android": {
|
|
"build": 82,
|
|
"lastDeployed": null
|
|
}
|
|
}
|