-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.05 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"expo": {
"name": "Korbo Joy",
"slug": "korbo-joy",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./app/assets/images/logo.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./app/assets/images/logo-white.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.korbojoy.app",
"buildNumber": "1.0.0"
},
"android": {
"package": "com.korbojoy.app",
"versionCode": 1,
"adaptiveIcon": {
"foregroundImage": "./app/assets/images/adap-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./app/assets/images/logo.png",
"name": "Korbo Joy"
},
"extra": {
"eas": {
"projectId": "66202eaa-67d2-408a-bd21-075d8e2ff10a"
}
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos."
}
]
]
}
}