diff --git a/app.json b/app.json index d0fcd699..15412a9a 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "Streamyfin", "slug": "streamyfin", - "version": "0.8.2", + "version": "0.8.3", "orientation": "default", "icon": "./assets/images/icon.png", "scheme": "streamyfin", @@ -33,7 +33,7 @@ }, "android": { "jsEngine": "hermes", - "versionCode": 23, + "versionCode": 24, "adaptiveIcon": { "foregroundImage": "./assets/images/icon.png" }, @@ -78,6 +78,11 @@ "deploymentTarget": "14.0" }, "android": { + "android": { + "compileSdkVersion": 34, + "targetSdkVersion": 34, + "buildToolsVersion": "34.0.0" + }, "minSdkVersion": 24, "usesCleartextTraffic": true, "packagingOptions": { diff --git a/components/ParallaxPage.tsx b/components/ParallaxPage.tsx index 4f955c6b..e970f1a3 100644 --- a/components/ParallaxPage.tsx +++ b/components/ParallaxPage.tsx @@ -1,7 +1,5 @@ -import { Ionicons } from "@expo/vector-icons"; -import { router } from "expo-router"; import type { PropsWithChildren, ReactElement } from "react"; -import { TouchableOpacity, View } from "react-native"; +import { View } from "react-native"; import Animated, { interpolate, useAnimatedRef, @@ -9,7 +7,6 @@ import Animated, { useScrollViewOffset, } from "react-native-reanimated"; import { useSafeAreaInsets } from "react-native-safe-area-context"; -import { Chromecast } from "./Chromecast"; const HEADER_HEIGHT = 400; @@ -75,6 +72,7 @@ export const ParallaxScrollView: React.FC = ({ > {headerImage} + {children} diff --git a/eas.json b/eas.json index db05e9f1..bf9876c7 100644 --- a/eas.json +++ b/eas.json @@ -21,13 +21,13 @@ } }, "production": { - "channel": "0.8.2", + "channel": "0.8.3", "android": { "image": "latest" } }, "production-apk": { - "channel": "0.8.2", + "channel": "0.8.3", "android": { "buildType": "apk", "image": "latest" diff --git a/providers/JellyfinProvider.tsx b/providers/JellyfinProvider.tsx index ec6a7e77..22ca5937 100644 --- a/providers/JellyfinProvider.tsx +++ b/providers/JellyfinProvider.tsx @@ -59,7 +59,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({ setJellyfin( () => new Jellyfin({ - clientInfo: { name: "Streamyfin", version: "0.8.2" }, + clientInfo: { name: "Streamyfin", version: "0.8.3" }, deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id }, }) );