-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
63 lines (63 loc) · 1.79 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
{
"expo": {
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/adaptive-icon.png",
"backgroundColor": "#7121d0"
},
"package": "com.theomesnil.WhatToWatch",
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.theomesnil.WhatToWatch",
"versionCode": 10
},
"assetBundlePatterns": ["**/*"],
"description": "Looking for a movie or series idea for tonight? WhatToWatch is the simplest and fastest way to discover movies, series, and where to watch them. This app is powered by the themoviedb (TMDb) database.",
"extra": {
"eas": {
"projectId": "deb154a5-6b12-419a-a3c5-d704888f7df2"
}
},
"githubUrl": "/~https://github.com/theo-mesnil/WhatToWatch",
"icon": "./src/assets/icon-light.png",
"ios": {
"icon": {
"light": "./src/assets/icon-light.png",
"dark": "./src/assets/icon-dark.png",
"tinted": "./src/assets/icon-tinted.png"
},
"supportsTablet": false,
"bundleIdentifier": "com.theomesnil.WhatToWatch"
},
"name": "WhatToWatch",
"orientation": "portrait",
"newArchEnabled": true,
"plugins": [
"expo-font",
"expo-localization",
"expo-router",
[
"expo-splash-screen",
{
"backgroundColor": "#0d0d0d",
"image": "./src/assets/splash-icon.png",
"imageWidth": 200
}
]
],
"scheme": "whattowatch",
"slug": "WhatToWatch",
"version": "3.2.0",
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/deb154a5-6b12-419a-a3c5-d704888f7df2"
},
"web": {
"favicon": "./src/assets/favicon.png"
},
"experiments": {
"typedRoutes": true
},
"runtimeVersion": {
"policy": "appVersion"
}
}
}