Files
bsky-social-app/eas.json
T
Samuel Newman 265a9b2acb Simplify Android build workflow: use bundletool + eas submit
Replace the redundant second EAS build (production-apk) with bundletool
to generate a universal APK from the AAB. Add eas submit to auto-submit
to Google Play for both profiles. Both profiles now follow the same
path: Build AAB → eas submit → bundletool APK → upload artifact → Slack.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-28 11:59:56 +01:00

95 lines
1.9 KiB
JSON

{
"cli": {
"version": ">= 3.8.1",
"promptToConfigurePushNotifications": false,
"appVersionSource": "remote"
},
"build": {
"base": {
"node": "20.19.4"
},
"development": {
"extends": "base",
"developmentClient": true,
"distribution": "internal",
"channel": "development",
"ios": {
"simulator": true,
"resourceClass": "large"
},
"env": {
"EXPO_PUBLIC_ENV": "production"
}
},
"preview": {
"extends": "base",
"distribution": "internal",
"channel": "production",
"ios": {
"resourceClass": "large"
},
"env": {
"EXPO_PUBLIC_ENV": "production"
}
},
"production": {
"extends": "base",
"ios": {
"resourceClass": "large",
"autoIncrement": true,
"buildArtifactPaths": ["ios/build/*"]
},
"android": {
"autoIncrement": true
},
"channel": "production",
"env": {
"EXPO_PUBLIC_ENV": "production"
}
},
"testflight": {
"extends": "base",
"ios": {
"autoIncrement": true,
"buildArtifactPaths": ["ios/build/*"]
},
"android": {
"autoIncrement": true
},
"channel": "testflight",
"env": {
"EXPO_PUBLIC_ENV": "testflight"
}
},
"testflight-android": {
"extends": "base",
"ios": {
"autoIncrement": true,
"buildArtifactPaths": ["ios/build/*"]
},
"android": {
"autoIncrement": true
},
"channel": "testflight",
"env": {
"EXPO_PUBLIC_ENV": "testflight"
}
}
},
"submit": {
"production": {
"ios": {
"ascAppId": "6444370199"
},
"android": {
"track": "production"
}
},
"testflight-android": {
"android": {
"track": "internal"
}
}
}
}