-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
97 lines (97 loc) · 3.08 KB
/
Copy pathapp.json
File metadata and controls
97 lines (97 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"expo": {
"newArchEnabled": true,
"name": "PrepAI",
"slug": "prepai",
"version": "1.0.0",
"runtimeVersion": "1.0.0",
"scheme": "prepai",
"jsEngine": "hermes",
"experiments": {
"tsconfigPaths": true,
"typedRoutes": true
},
"plugins": [
[
"expo-splash-screen",
{
"image": "./src/assets/images/adaptive-icon.png",
"imageWidth": 200,
"resizeMode": "cover",
"backgroundColor": "#000000"
}
],
"expo-router",
"expo-sqlite",
"expo-font",
"expo-secure-store",
"expo-asset",
"expo-background-task",
[
"@kingstinct/react-native-healthkit",
{
"NSHealthShareUsageDescription": "PrepAI imports activity, workouts, sleep, hydration, and body measurements from Apple Health to personalize your nutrition and fitness plan.",
"NSHealthUpdateUsageDescription": "PrepAI can save health and fitness updates you explicitly choose to sync.",
"background": true
}
]
],
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"assetBundlePatterns": ["**/*"],
"web": {
"bundler": "metro",
"output": "server",
"favicon": "./src/assets/favicon.png"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.jongan69.prepai",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSHealthShareUsageDescription": "PrepAI imports activity, workouts, sleep, hydration, and body measurements from Apple Health to personalize your nutrition and fitness plan.",
"NSHealthUpdateUsageDescription": "PrepAI can save health and fitness updates you explicitly choose to sync."
}
},
"android": {
"edgeToEdgeEnabled": true,
"adaptiveIcon": {
"foregroundImage": "./src/assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"softwareKeyboardLayoutMode": "pan",
"package": "com.jongan69.prepai"
},
"extra": {
"eas": {
"projectId": "30d0bb01-8e31-4a5f-8de4-549fd39256b9"
},
"apiBaseUrl": "https://prepai.com",
"appInfo": {
"name": "PrepAI",
"tagline": "Transform Your Fitness Journey with AI",
"description": "PrepAI combines artificial intelligence with personalized nutrition and workout planning to help you achieve your health goals faster and more effectively.",
"version": "1.0.0",
"socialMedia": {
"twitter": "https://twitter.com/prepai",
"facebook": "https://facebook.com/prepai",
"instagram": "https://instagram.com/prepai",
"linkedin": "https://linkedin.com/company/prepai"
},
"contact": {
"email": "hello@prepai.com",
"website": "https://prepai.com"
}
}
},
"updates": {
"url": "https://u.expo.dev/30d0bb01-8e31-4a5f-8de4-549fd39256b9"
}
}
}