-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
46 lines (46 loc) · 1.08 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
{
"expo": {
"name": "gerbera",
"slug": "gerbera",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icons/launcher_icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#373737"
},
"notification": {
"icon": "./assets/icons/notification_icon.png",
"color": "#FF7500"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.gerbera.gerbera",
"buildNumber": "1.0.0"
},
"android": {
"package": "com.gerbera.gerbera",
"versionCode": 1,
"useNextNotificationsApi": true,
"permissions": [
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
],
"adaptiveIcon": {
"foregroundImage": "./assets/icons/adaptive.png",
"backgroundColor": "#373737"
}
},
"web": {
"favicon": "./assets/images/favicon.png"
}
}
}