Files
Genarrative/apps/mobile-shell/app.json
kdletters 02a475d652 接入 Expo 移动壳深链入口
新增移动壳 deep link 到同源 H5 路径的解析与运行时监听

配置移动壳真实品牌图标、iOS associated domain 和 Android app link

补充移动壳配置守门、单测和宿主壳文档记忆
2026-06-17 22:04:18 +08:00

43 lines
884 B
JSON

{
"expo": {
"name": "Genarrative",
"slug": "genarrative-mobile-shell",
"scheme": "genarrative",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"assetBundlePatterns": [
"**/*"
],
"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
}
}
}