diff --git a/app.json b/app.json index 29f9a1ff..1b2b3452 100644 --- a/app.json +++ b/app.json @@ -13,17 +13,13 @@ "backgroundColor": "#29164B" }, "jsEngine": "hermes", - "assetBundlePatterns": [ - "**/*" - ], + "assetBundlePatterns": ["**/*"], "ios": { "requireFullScreen": true, "infoPlist": { "NSCameraUsageDescription": "The app needs access to your camera to scan barcodes.", "NSMicrophoneUsageDescription": "The app needs access to your microphone.", - "UIBackgroundModes": [ - "audio" - ], + "UIBackgroundModes": ["audio"], "NSLocalNetworkUsageDescription": "The app needs access to your local network to connect to your Jellyfin server.", "NSAppTransportSecurity": { "NSAllowsArbitraryLoads": true, @@ -106,8 +102,7 @@ { "motionPermission": "Allow Streamyfin to access your device motion for landscape video watching." } - ], - "expo-video" + ] ], "experiments": { "typedRoutes": true diff --git a/bun.lockb b/bun.lockb index 92bb62ae..6e2649ac 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 9b2e7ed5..e31fb152 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,6 @@ "expo-status-bar": "~1.12.1", "expo-system-ui": "~3.0.7", "expo-updates": "~0.25.22", - "expo-video": "^1.2.4", "expo-web-browser": "~13.0.3", "ffmpeg-kit-react-native": "^6.0.2", "jotai": "^2.9.1", diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index c049eb50..4c4d1662 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -56,7 +56,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "1.0.0" }, + clientInfo: { name: "Streamyfin", version: "0.4.1" }, deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id }, }), );