Files
Genarrative/apps/mobile-shell/app.json
kdletters 3dbc3f0319 收紧移动壳网络安全元数据
禁用 Android 默认明文流量

禁用 iOS ATS 任意网络加载

声明当前未使用非豁免自定义加密

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

78 lines
1.9 KiB
JSON

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