-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
55 lines (55 loc) · 1.28 KB
/
app.json
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"expo": {
"name": "가치 GACHI",
"slug": "gachi-app",
"version": "1.0.0",
"scheme": "gachi",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#74B8FF"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.gachi.app"
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/android-icon-foreground.png",
"backgroundImage": "./assets/android-icon-background.png"
},
"predictiveBackGestureEnabled": false,
"package": "com.gachi.app",
"softwareKeyboardLayoutMode": "pan"
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#74B8FF"
}
],
"expo-camera",
"expo-image-picker",
"expo-localization",
"expo-secure-store",
[
"expo-notifications",
{
"color": "#5B9EC9"
}
]
]
}
}