-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.27 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.27 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
{
"expo": {
"name": "OWC Social",
"slug": "one-world-community",
"owner": "one-world-community",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "owc",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.oneworldcommunity.oneworldcommunity",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSLocationWhenInUseUsageDescription": "This app uses your location to find nearby events and content relevant to your area.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "This app uses your location to find nearby events and content relevant to your area.",
"NSLocationAlwaysUsageDescription": "This app uses your location to find nearby events and content relevant to your area."
},
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png",
"indexHtml": "index.html",
"name": "OWC Social",
"shortName": "OWC Social",
"description": "Explore your interests with OWC Social",
"lang": "en",
"themeColor": "#6366f1",
"backgroundColor": "#ffffff",
"display": "standalone",
"orientation": "portrait",
"scope": "/",
"startUrl": "/",
"icons": [
{
"src": "./assets/images/icon.png",
"sizes": "1024x1024",
"type": "image/png"
}
]
},
"plugins": [
"expo-router",
"expo-font"
],
"experiments": {
"typedRoutes": true
},
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "88f3d8bc-d3a5-44ec-839f-330f9be4c495"
}
},
"android": {
"package": "com.oneworldcommunity.oneworldcommunity",
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#ffffff"
}
}
}
}