d7e8429753
* Add buildArtifactPaths to iOS builds
* Update privacyManifests
* Revert changes to build configs
* Add --include-sources flag
* Add nativeCrash tester
* Sam's crash testbed
(cherry picked from commit b0a0cb7799cd900777570cae7dc10461cf811e0f)
* Output artifacts, tarball, extract and upload dSYM to Sentry
* Revert "Sam's crash testbed"
This reverts commit cc2c9828a0.
* Remove sources for other targets, include sources for main bundle
* Apply suggestion from @mozzius
* Apply suggestion from @mozzius
---------
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
103 lines
2.1 KiB
JSON
103 lines
2.1 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"
|
|
}
|
|
},
|
|
"production-apk": {
|
|
"extends": "base",
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"autoIncrement": false,
|
|
"buildArtifactPaths": ["ios/build/*"]
|
|
},
|
|
"android": {
|
|
"autoIncrement": false
|
|
},
|
|
"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",
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"autoIncrement": true,
|
|
"buildArtifactPaths": ["ios/build/*"]
|
|
},
|
|
"android": {
|
|
"autoIncrement": true
|
|
},
|
|
"channel": "testflight",
|
|
"env": {
|
|
"EXPO_PUBLIC_ENV": "testflight"
|
|
}
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {
|
|
"ios": {
|
|
"ascAppId": "6444370199"
|
|
}
|
|
}
|
|
}
|
|
}
|