-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
49 lines (49 loc) · 1.18 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
48
49
{
"expo": {
"name": "Family Chat",
"icon": "./assets/familychat.png",
"version": "1.1.5",
"slug": "family-chat-app",
"orientation": "portrait",
"scheme": "familychat",
"splash": {
"image": "./assets/speechBubble.png",
"resizeMode": "cover",
"backgroundColor": "#FCF3EA"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"userInterfaceStyle": "light",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.parizeauinnovations.familychat",
"buildNumber": "1.1.5"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#1982FC"
},
"package": "com.parizeauinnovations.familychat",
"versionCode": 13,
"permissions": []
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
[
"expo-media-library",
{
"photosPermission": "Allow FamilyChat to access your photos.",
"savePhotosPermission": "Allow FamilyChat to save photos.",
"isAccessMediaLocationEnabled": "true"
}
]
]
}
}