This commit is contained in:
Fredrik Burmester
2024-08-25 17:58:57 +02:00
parent 57cac96df5
commit 75f3f483eb
4 changed files with 12 additions and 9 deletions

View File

@@ -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": {

View File

@@ -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<Props> = ({
>
{headerImage}
</Animated.View>
<View className="flex-1 overflow-hidden bg-black pb-24">
{children}
</View>

View File

@@ -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"

View File

@@ -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 },
})
);