-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
47 lines (47 loc) · 1.19 KB
/
app.json
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
{
"expo": {
"name": "Mind Wave",
"slug": "mind-wave",
"description": "A minimalist meditation app to help users relax, focus, and practice mindfulness through guided meditation and affirmations.",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/app__icon.png",
"scheme": "com.supabase",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/simpleMeditationLogo.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "mindwave.app"
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#ffffff"
},
"package": "mindwave.app"
},
"web": {
"bundler": "metro",
"output": "static"
},
"plugins": ["expo-router", "expo-font", "expo-secure-store"],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "c73e4cc6-d119-46b6-a020-949faab034d6"
}
},
"owner": "rahulnisanth",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/c73e4cc6-d119-46b6-a020-949faab034d6"
}
}
}