Files
Yuzu-GCA/packages/client-android/app.json
LukeMackin e5ce52ac40 feat(expo): JS热更新(expo-updates) + APK大更新双轨
- app.json: expo-updates配置(checkAutomatically ON_LOAD)
- ota/expo-manifest.json: JS bundle热更新manifest
- App.tsx: 启动时自动检查JS+APK双轨更新
- pnpm install后npx expo prebuild生成android/原生工程
2026-07-19 23:40:17 +08:00

28 lines
845 B
JSON

{
"expo": {
"name": "YuzuGCA",
"slug": "yuzu-gca",
"version": "0.1.0",
"orientation": "portrait",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"splash": { "backgroundColor": "#0f172a" },
"ios": { "supportsTablet": false, "bundleIdentifier": "dev.yuzu.gca" },
"android": {
"adaptiveIcon": { "backgroundColor": "#0f172a" },
"package": "dev.yuzu.gca",
"allowBackup": false,
"versionCode": 8,
"permissions": ["REQUEST_INSTALL_PACKAGES"]
},
"plugins": ["expo-updates"],
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 3000,
"url": "https://git.childish-ghost.com/LukeMackin/Yuzu-GCA/raw/branch/main/ota/expo-manifest.json"
},
"extra": { "eas": { "projectId": "yuzu-gca-android" } }
}
}