- Add eas.json with development, preview, and production profiles - Configure preview profile for APK builds (arm64-v8a only) - Add build:apk npm script for local builds - Update app.json with app name and Android package - Add expo-build-properties dependency - Update CLAUDE.md with build documentation
29 lines
526 B
JSON
29 lines
526 B
JSON
{
|
|
"cli": {
|
|
"version": ">= 16.28.0",
|
|
"appVersionSource": "remote"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"developmentClient": true,
|
|
"distribution": "internal"
|
|
},
|
|
"preview": {
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk",
|
|
"withoutCredentials": true
|
|
},
|
|
"env": {
|
|
"ORG_GRADLE_PROJECT_reactNativeArchitectures": "arm64-v8a"
|
|
}
|
|
},
|
|
"production": {
|
|
"autoIncrement": true
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {}
|
|
}
|
|
}
|