-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheas.json
More file actions
37 lines (36 loc) · 1.42 KB
/
Copy patheas.json
File metadata and controls
37 lines (36 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
// EAS (Expo Application Services) config - defines how your app is built and submitted
// to app stores using Expo's cloud build service (no local Xcode/Android Studio needed)
"cli": {
"version": ">= 16.32.0", // Minimum EAS CLI version required
"appVersionSource": "remote" // Version managed by EAS servers, not locally
},
// Build profiles - each profile is a different build config you run with:
// eas build --profile <name> (e.g. eas build --profile development)
"build": {
// DEV: For daily development. Includes dev tools like hot reload & debugging.
// Run: eas build --platform ios --profile development
"development": {
// Includes dev tools (hot reload, debugging)
"developmentClient": true,
// Installs directly on registered devices via ad hoc
"distribution": "internal"
},
// PREVIEW: For sharing with testers/QA. Production-like but not on App Store.
// Run: eas build --platform ios --profile preview
"preview": {
// Testable build without dev tools (for QA/testing)
"distribution": "internal"
},
// PRODUCTION: Final build for App Store / Google Play submission.
// Run: eas build --platform ios --profile production
"production": {
// Auto-bumps build number on each build
"autoIncrement": true
}
},
"submit": {
// Config for submitting to App Store / Google Play via EAS Submit
"production": {}
}
}