fitaiProto/apps/mobile/app.json
echo 24ed0b6190 pedometar
problem with expogo, should be sorted before build
2025-11-28 18:08:52 +01:00

61 lines
1.4 KiB
JSON

{
"expo": {
"name": "FitAI",
"slug": "fitai",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.ACTIVITY_RECOGNITION"
],
"package": "com.anonymous.fitai"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSMotionUsageDescription": "This app uses the pedometer to track your steps."
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-font",
[
"react-native-health-connect",
{
"permissions": [
{
"accessType": "read",
"recordType": "Steps"
},
{
"accessType": "read",
"recordType": "TotalCaloriesBurned"
},
{
"accessType": "read",
"recordType": "ExerciseSession"
}
]
}
]
],
"scheme": "fitai"
}
}