-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
83 lines (83 loc) · 1.95 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
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
{
"expo": {
"name": "Laudiolin",
"slug": "laudiolin-mobile",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "laudiolin",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0c0f17"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"userInterfaceStyle": "automatic",
"infoPlist": {
"UIBackgroundModes": [
"audio"
]
},
"config": {
"usesNonExemptEncryption": false
},
"supportsTablet": false,
"bundleIdentifier": "moe.seikimo.laudiolin",
"associatedDomains": [
"applinks:laudiol.in",
"applinks:laudiolin.seikimo.moe"
]
},
"android": {
"userInterfaceStyle": "automatic",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "moe.seikimo.laudiolin",
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "*.laudiol.in",
"pathPrefix": "/"
},
{
"scheme": "https",
"host": "laudiolin.seikimo.moe",
"pathPrefix": "/"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-font",
"expo-secure-store",
[
"expo-image-picker",
{ "photosPermission": "Laudiolin needs this to allow selecting an icon for making a playlist." }
],
[
"expo-document-picker",
{ "iCloudContainerEnvironment": "Production" }
]
],
"extra": {
"eas": {
"projectId": "d5374d36-2b36-42ee-b013-dc1450d439a8"
}
}
}
}