Files
Genarrative/apps/mobile-shell/app.json
kdletters bbfe4b7181 接入原生壳本地通知能力
新增 notification.showLocal HostBridge 契约和 H5 facade

移动端通过 expo-notifications 发送即时本地通知

桌面端通过 Tauri notification 插件发送系统通知

更新壳能力检查、测试、方案文档和共享决策记录
2026-06-18 04:24:55 +08:00

59 lines
1.3 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": false,
"microphonePermission": false
}
],
[
"expo-notifications",
{
"enableBackgroundRemoteNotifications": false
}
]
],
"ios": {
"supportsTablet": true,
"associatedDomains": [
"applinks:app.genarrative.world"
]
},
"android": {
"package": "world.genarrative.mobile",
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "app.genarrative.world"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"extra": {
"genarrativeHostBridgeVersion": 1
}
}
}