feat: add CI/CD workflows and EAS build config (Sprint 5)
Some checks are pending
Build (EAS) / EAS Build (Android Preview APK) (push) Waiting to run

This commit is contained in:
root
2026-02-19 22:08:36 +08:00
parent c8fe67f346
commit 6a4ee9e80f
5 changed files with 199 additions and 2 deletions

25
eas.json Normal file
View File

@@ -0,0 +1,25 @@
{
"cli": {
"version": ">= 12.0.0"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal",
"android": {
"buildType": "apk"
}
},
"production": {
"android": {
"buildType": "app-bundle"
}
}
},
"submit": {
"production": {}
}
}