react-phone-apps/apps/property-survey/app.json
lanrtop cea2a5d208 feat: 表单保存优化、照片保存相册及布局性能改进
- 物品表单底部新增冻结保存按钮,保存成功显示 Toast 提示
- 照片全屏预览时支持一键保存到本地相册(expo-media-library ~16.0.0)
- 左侧标记点列表侧栏宽度从 120 调整为 160
- FoldableLayout 改用 LayoutAnimation 替代 JS 线程宽度动画,修复 Android 地图渲染空白及卡顿问题
- 修复 ImagePicker 废弃 API MediaTypeOptions.Images → MediaType.Images

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-10 00:12:42 +09:00

62 lines
1.3 KiB
JSON

{
"expo": {
"name": "不动产摸底",
"slug": "yljt-app",
"owner": "lanrtops-organization",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"scheme": "property-survey",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.example.propertysurvey"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.example.propertysurvey"
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "允许访问相册以保存照片",
"savePhotosPermission": "允许保存照片到相册",
"isAccessMediaLocationEnabled": true
}
],
[
"expo-build-properties",
{
"android": {
"kotlinVersion": "1.9.25"
}
}
],
"expo-router",
[
"expo-sqlite",
{
"enableFTS": true
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "27dc0343-a1df-4569-8019-82b2f061a420"
}
}
}
}