-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
app.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"expo": {
"name": "Jellyfin",
"slug": "jellyfin-expo",
"owner": "jellyfin",
"privacy": "unlisted",
"platforms": [
"ios"
],
"version": "1.6.0",
"orientation": "default",
"primaryColor": "#00a4dc",
"backgroundColor": "#101010",
"icon": "./assets/images/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#101010"
},
"updates": {
"enabled": false,
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"buildNumber": "5.6.0.0",
"supportsTablet": true,
"requireFullScreen": false,
"bundleIdentifier": "org.jellyfin.expo",
"infoPlist": {
"NSCameraUsageDescription": "Allow $(PRODUCT_NAME) to access your camera.",
"UIBackgroundModes": [
"audio",
"fetch"
]
}
},
"description": "Jellyfin Mobile"
}
}