- Add versionCode: 1 to app.json android section - Add preview-local build profile to eas.json (local Gradle build) - Add build:android:apk and build:android:local npm scripts - Add BUILD.md documenting EAS cloud and local build instructions
32 lines
548 B
JSON
32 lines
548 B
JSON
{
|
|
"cli": {
|
|
"version": ">= 16.0.0"
|
|
},
|
|
"build": {
|
|
"development": {
|
|
"developmentClient": true,
|
|
"distribution": "internal"
|
|
},
|
|
"preview": {
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk"
|
|
}
|
|
},
|
|
"preview-local": {
|
|
"distribution": "internal",
|
|
"android": {
|
|
"buildType": "apk",
|
|
"gradleCommand": ":app:assembleRelease"
|
|
},
|
|
"env": {}
|
|
},
|
|
"production": {
|
|
"autoIncrement": true
|
|
}
|
|
},
|
|
"submit": {
|
|
"production": {}
|
|
}
|
|
}
|