Files
digital-pilates/app.json
richarjiang 56d4c7fd7f feat: 更新应用图标和启动画面
- 将应用图标更改为 logo.jpeg,更新相关配置文件
- 删除旧的图标文件,确保资源整洁
- 更新启动画面使用新的 logo 图片,提升视觉一致性
- 在训练计划相关功能中集成新的 API 接口,支持训练计划的创建和管理
- 优化 Redux 状态管理,支持训练计划的加载和删除功能
- 更新样式以适应新图标和功能的展示
2025-08-14 19:28:38 +08:00

58 lines
1.7 KiB
JSON

{
"expo": {
"name": "digital-pilates",
"slug": "digital-pilates",
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/images/logo.jpeg",
"scheme": "digitalpilates",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"jsEngine": "jsc",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.anonymous.digitalpilates",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSCameraUsageDescription": "应用需要使用相机以拍摄您的体态照片用于AI测评。",
"NSPhotoLibraryUsageDescription": "应用需要访问相册以选择您的体态照片用于AI测评。",
"NSPhotoLibraryAddUsageDescription": "应用需要写入相册以保存拍摄的体态照片(可选)。"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/logo.jpeg",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true,
"package": "com.anonymous.digitalpilates"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/logo.jpeg"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/logo.jpeg",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
],
[
"react-native-health",
{
"enableHealthAPI": true,
"healthSharePermission": "应用需要访问您的健康数据(步数与能量消耗)以展示运动统计。"
}
]
],
"experiments": {
"typedRoutes": true
}
}
}