-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
executable file
·46 lines (46 loc) · 1.06 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": "Castafiore",
"slug": "Castafiore",
"description": "Mobile app for navidrome",
"version": "2025.01.11",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"infoPlist": {
"UIBackgroundModes": [
"audio"
]
},
"bundleIdentifier": "com.sawyerf.castafiore"
},
"android": {
"package": "com.sawyerf.castafiore",
"adaptiveIcon": {
"foregroundImage": "./assets/foreground-icon.png",
"backgroundColor": "#660000"
},
"splash": {
"image": "./assets/foreground-icon.png",
"resizeMode": "contain",
"backgroundColor": "#660000"
}
},
"web": {
"shortName": "Castafiore",
"startUrl": "./index.html",
"backgroundColor": "#121212",
"theme_color": "#121212"
},
"extra": {
"eas": {
"projectId": "98d27f72-714e-415c-99f9-30f3f78d68e2"
}
}
}
}