-
-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathapp.json
More file actions
118 lines (118 loc) · 3.11 KB
/
app.json
File metadata and controls
118 lines (118 loc) · 3.11 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
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
{
"expo": {
"name": "Nuvio",
"slug": "nuvio",
"version": "1.4.4",
"orientation": "default",
"backgroundColor": "#020404",
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
"userInterfaceStyle": "dark",
"scheme": "nuvio",
"newArchEnabled": true,
"splash": {
"image": "./src/assets/splash-icon-new.png",
"resizeMode": "contain",
"backgroundColor": "#020404"
},
"ios": {
"supportsTablet": true,
"icon": "./assets/ios/AppIcon.appiconset/Icon-App-60x60@3x.png",
"buildNumber": "40",
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"NSBonjourServices": [
"_http._tcp",
"_googlecast._tcp",
"_CC1AD845._googlecast._tcp"
],
"NSLocalNetworkUsageDescription": "Nuvio uses the local network to discover Cast-enabled devices on your WiFi network and to connect to local media servers.",
"NSMicrophoneUsageDescription": "This app does not require microphone access.",
"UIBackgroundModes": [
"audio"
],
"LSSupportsOpeningDocumentsInPlace": true,
"UIFileSharingEnabled": true,
"LSApplicationQueriesSchemes": [
"vlc",
"vlc-x-callback",
"infuse",
"outplayer",
"open-vidhub",
"livecontainer"
]
},
"bundleIdentifier": "com.nuvio.hub",
"associatedDomains": [],
"jsEngine": "hermes",
"appleTeamId": "8QBDZ766S3"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/android/mipmap-xxxhdpi/ic_launcher_foreground.png",
"backgroundColor": "#020404"
},
"icon": "./assets/android/mipmap-xxxhdpi/ic_launcher.png",
"permissions": [
"INTERNET",
"WAKE_LOCK",
"android.permission.WRITE_SETTINGS"
],
"package": "com.nuvio.app",
"versionCode": 40,
"architectures": [
"arm64-v8a",
"armeabi-v7a",
"x86",
"x86_64"
],
"jsEngine": "hermes"
},
"extra": {
"eas": {
"projectId": "909107b8-fe61-45ce-b02f-b02510d306a6"
}
},
"owner": "nayifleo",
"plugins": [
"expo-live-activity",
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "react-native",
"organization": "tapframe"
}
],
[
"@kesha-antonov/react-native-background-downloader",
{
"skipMmkvDependency": true
}
],
"expo-localization",
[
"expo-updates",
{
"username": "nayifleo"
}
],
"react-native-bottom-tabs",
[
"react-native-google-cast",
{
"receiverAppId": "CC1AD845",
"iosStartDiscoveryAfterFirstTapOnCastButton": true
}
]
],
"updates": {
"enabled": true,
"checkAutomatically": "ON_ERROR_RECOVERY",
"fallbackToCacheTimeout": 30000,
"url": "https://ota.nuvioapp.space/api/manifest"
},
"runtimeVersion": "1.4.4"
}
}