Files
Genarrative/apps/mobile-shell/app.json
kdletters 67a52e444f 固定移动壳安装包身份
补齐 Expo 移动壳 iOS bundleIdentifier 与 buildNumber

补齐 Expo 移动壳 Android versionCode

校验移动壳版本、包标识和构建号不漂移

更新原生壳方案和团队决策记录
2026-06-18 08:29:47 +08:00

62 lines
1.4 KiB
JSON

{
"expo": {
"name": "Genarrative",
"slug": "genarrative-mobile-shell",
"scheme": "genarrative",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": [
"**/*"
],
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "允许 Genarrative 读取你选择的图片,用于导入创作素材和参考图。",
"cameraPermission": "允许 Genarrative 使用相机拍摄创作素材和参考图。",
"microphonePermission": false
}
],
[
"expo-notifications",
{
"enableBackgroundRemoteNotifications": false
}
]
],
"ios": {
"bundleIdentifier": "world.genarrative.mobile",
"buildNumber": "1",
"supportsTablet": true,
"associatedDomains": [
"applinks:app.genarrative.world"
]
},
"android": {
"package": "world.genarrative.mobile",
"versionCode": 1,
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "app.genarrative.world"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"extra": {
"genarrativeHostBridgeVersion": 1
}
}
}