mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +00:00
This update introduces Sentry for improved error tracking and reporting within the application. The SettingsScreen has been enhanced to include a button for reporting bugs or suggestions via Sentry's feedback widget. Additionally, a new feature allows users to clear the MDBList cache, improving cache management and user experience. The .gitignore file has been updated to include .env.local, and the app.json file has been modified to support Sentry integration.
86 lines
2.1 KiB
JSON
86 lines
2.1 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Nuvio",
|
|
"slug": "nuvio",
|
|
"version": "1.0.0",
|
|
"orientation": "default",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "dark",
|
|
"scheme": "stremioexpo",
|
|
"newArchEnabled": true,
|
|
"splash": {
|
|
"image": "./assets/splash-icon.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#020404"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"infoPlist": {
|
|
"NSAppTransportSecurity": {
|
|
"NSAllowsArbitraryLoads": true
|
|
},
|
|
"NSBonjourServices": [
|
|
"_http._tcp"
|
|
],
|
|
"NSLocalNetworkUsageDescription": "App uses the local network to discover and connect to devices.",
|
|
"NSMicrophoneUsageDescription": "This app does not require microphone access.",
|
|
"UIBackgroundModes": [
|
|
"audio"
|
|
],
|
|
"LSSupportsOpeningDocumentsInPlace": true,
|
|
"UIFileSharingEnabled": true
|
|
},
|
|
"bundleIdentifier": "com.nuvio.app",
|
|
"associatedDomains": [],
|
|
"documentTypes": [
|
|
{
|
|
"name": "Matroska Video",
|
|
"role": "viewer",
|
|
"utis": [
|
|
"org.matroska.mkv"
|
|
],
|
|
"extensions": [
|
|
"mkv"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/icon.png",
|
|
"backgroundColor": "#020404",
|
|
"monochromeImage": "./assets/icon.png"
|
|
},
|
|
"permissions": [
|
|
"INTERNET",
|
|
"WAKE_LOCK"
|
|
],
|
|
"package": "com.nuvio.app",
|
|
"enableSplitAPKs": true,
|
|
"versionCode": 1,
|
|
"enableProguardInReleaseBuilds": true,
|
|
"enableHermes": true,
|
|
"enableSeparateBuildPerCPUArchitecture": true,
|
|
"enableVectorDrawables": true
|
|
},
|
|
"web": {
|
|
"favicon": "./assets/favicon.png"
|
|
},
|
|
"extra": {
|
|
"eas": {
|
|
"projectId": "909107b8-fe61-45ce-b02f-b02510d306a6"
|
|
}
|
|
},
|
|
"owner": "nayifleo",
|
|
"plugins": [
|
|
[
|
|
"@sentry/react-native/expo",
|
|
{
|
|
"url": "https://sentry.io/",
|
|
"project": "react-native",
|
|
"organization": "tapframe"
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|