-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 1.92 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 1.92 KB
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
{
"expo": {
"name": "Seerr",
"slug": "seerr",
"owner": "seerr",
"version": "0.10.7",
"orientation": "default",
"githubUrl": "https://github.com/seerr-team/mobile-app",
"scheme": "seerr",
"userInterfaceStyle": "dark",
"newArchEnabled": true,
"jsEngine": "hermes",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "dev.seerr.mobileapp",
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"ITSAppUsesNonExemptEncryption": false
},
"icon": {
"dark": "./assets/images/ios_icon.png",
"light": "./assets/images/ios_icon.png",
"tinted": "./assets/images/ios_icon.png"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptative_icon.png",
"backgroundColor": "#111827"
},
"package": "dev.seerr.mobileapp",
"edgeToEdgeEnabled": true
},
"plugins": [
"@react-native-tvos/config-tv",
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/adaptative_icon.png",
"imageWidth": 300,
"resizeMode": "contain",
"backgroundColor": "#111827"
}
],
[
"expo-asset",
{
"assets": [
"./assets/services/rt_aud_fresh.png",
"./assets/services/rt_aud_rotten.png",
"./assets/services/rt_fresh.png",
"./assets/services/rt_rotten.png",
"./assets/services/imdb.png",
"./assets/services/tmdb_logo.png"
]
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
],
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "2471de6a-13b0-4a05-8ffc-46e984768e9a"
}
}
}
}