mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 19:01:18 +00:00

- Update outdated Expo packages to latest compatible versions - Remove unmaintained expo-random package - Remove unnecessary @types/react-native package - Configure eas.json with preview and production profiles for iOS - Fix updates URL in app.json with correct project ID - Add /android and /ios to .gitignore to resolve workflow conflict - Create comprehensive iOS TestFlight submission guide - Add production flag in theme constants - Hide development-only Programs tab in production builds - Remove debug UI and console logs from social feed in production - Update CHANGELOG.md with TestFlight preparation changes All checks from expo-doctor now pass (15/15).
43 lines
806 B
JSON
43 lines
806 B
JSON
{
|
|
"cli": {
|
|
"version": ">= 3.7.2"
|
|
},
|
|
"build": {
|
|
"development-simulator": {
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"simulator": true
|
|
}
|
|
},
|
|
"development": {
|
|
"developmentClient": true,
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
}
|
|
},
|
|
"preview": {
|
|
"distribution": "internal",
|
|
"ios": {
|
|
"resourceClass": "m1-medium"
|
|
}
|
|
},
|
|
"production": {
|
|
"autoIncrement": true,
|
|
"ios": {
|
|
"resourceClass": "m1-medium"
|
|
}
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {
|
|
"ios": {
|
|
"appleId": "YOUR_APPLE_ID_EMAIL",
|
|
"ascAppId": "YOUR_APP_STORE_CONNECT_APP_ID",
|
|
"appleTeamId": "YOUR_APPLE_TEAM_ID"
|
|
}
|
|
}
|
|
}
|
|
}
|