-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathapp.json
More file actions
114 lines (114 loc) · 3.12 KB
/
Copy pathapp.json
File metadata and controls
114 lines (114 loc) · 3.12 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"expo": {
"name": "Quorum",
"slug": "quorum-mobile",
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "quorummobile",
"userInterfaceStyle": "automatic",
"androidNavigationBar": {
"enforceContrast": false
},
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#0A0F1C"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.quilibrium.quorum-mobile",
"entitlements": {
"com.apple.security.application-groups": [
"group.com.quilibrium.quorum-mobile.shared"
]
},
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#0A0F1C"
},
"infoPlist": {
"LSApplicationQueriesSchemes": [
"farcaster"
],
"NSCameraUsageDescription": "Quorum uses the camera to take profile photos and video calls.",
"NSMicrophoneUsageDescription": "Quorum uses the microphone for voice and video calls.",
"NSPhotoLibraryUsageDescription": "Quorum uses your photo library to select profile photos.",
"NSPhotoLibraryAddUsageDescription": "Quorum saves photos and videos from chats and feeds to your photo library.",
"UIBackgroundModes": [
"fetch",
"processing",
"voip",
"audio"
],
"BGTaskSchedulerPermittedIdentifiers": [
"com.expo.modules.backgroundtask.processing"
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon-android-adaptive.png",
"backgroundColor": "#0087FA"
},
"splash": {
"image": "./assets/images/splash-glyph.png",
"resizeMode": "contain",
"backgroundColor": "#006EF0",
"dark": {
"image": "./assets/images/splash-glyph.png",
"resizeMode": "contain",
"backgroundColor": "#006EF0"
}
},
"edgeToEdgeEnabled": true,
"windowSoftInputMode": "adjustResize",
"statusBar": {
"translucent": true
},
"package": "com.quilibrium.quorummobile",
"permissions": [
"RECEIVE_BOOT_COMPLETED",
"VIBRATE",
"WAKE_LOCK",
"RECORD_AUDIO",
"CAMERA",
"MODIFY_AUDIO_SETTINGS",
"POST_NOTIFICATIONS"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
"expo-font",
"expo-web-browser",
[
"expo-notifications",
{
"icon": "./assets/images/notification-icon.png",
"color": "#0087FA",
"defaultChannel": "messages"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "5a410554-fd1e-4845-80bb-5f929202f1b2"
}
},
"runtimeVersion": "1.0.1",
"updates": {
"url": "https://u.expo.dev/5a410554-fd1e-4845-80bb-5f929202f1b2"
}
}
}