-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
134 lines (134 loc) · 3.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"expo": {
"name": "Setlist Sherlock",
"description": "Find all your favourite artist's gig setlists - powered by Setlist.fm, easily find concert setlists on the go.",
"githubUrl": "https://github.com/dylmye/setlist-sherlock",
"slug": "setlist-sherlock",
"owner": "dylmye",
"scheme": "setlist-sherlock",
"version": "1.6.0",
"orientation": "portrait",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"backgroundColor": "#1c1b1f",
"assetBundlePatterns": [
"**/*"
],
"platforms": [
"android",
"ios"
],
"ios": {
"supportsTablet": true,
"icon": {
"light": "./assets/icon-ios-1024.png",
"dark": "./assets/icon-ios-dark-1024.png",
"tinted": "./assets/icon-ios-tint-1024.png"
},
"appStoreUrl": "https://apps.apple.com/us/app/setlist-sherlock/id6477339282",
"bundleIdentifier": "com.dylmye.setlists",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSAppleMusicUsageDescription": "Allow Setlist Sherlock to access your Apple Music data to save setlists as playlists",
"NSPhotoLibraryUsageDescription": "Setlist Sherlock does not require access to the photo library"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon-android-1024.png",
"backgroundColor": "#ffffff",
"monochromeImage": "./assets/icon-android-1024.png"
},
"intentFilters": [
{
"action": "VIEW",
"data": [
{
"scheme": "musicsdk",
"pathPattern": "/authenticateresult.*",
"host": "${applicationId}"
}
],
"category": [
"android.intent.category.DEFAULT",
"android.intent.category.BROWSABLE"
]
}
],
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.dylmye.setlists",
"package": "com.dylmye.setlists"
},
"updates": {
"enabled": false
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "dcb2d835-302a-4ce3-b041-a38008da8319"
}
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-localization",
[
"expo-asset",
{
"assets": [
"./assets/songkick.png"
]
}
],
[
"expo-build-properties",
{
"ios": {
"deploymentTarget": "15.1"
},
"android": {
"enableProguardInReleaseBuilds": true,
"enableShrinkResourcesInReleaseBuilds": true
}
}
],
[
"expo-check-installed-apps",
{
"android": [
"com.apple.android.music"
]
}
],
[
"react-native-localization-settings",
{
"languages": [
"en",
"de",
"es",
"fr",
"it",
"pl",
"pt",
"tr"
]
}
],
[
"expo-splash-screen",
{
"backgroundColor": "#ffffff",
"image": "./assets/splash-light.png",
"dark": {
"backgroundColor": "#1c1b1f",
"image": "./assets/splash-dark.png"
}
}
]
]
}
}