This commit is contained in:
Fredrik Burmester
2024-08-11 08:17:04 +02:00
parent 4f10486b82
commit 4607102ea4
5 changed files with 18 additions and 8 deletions

3
.gitignore vendored
View File

@@ -31,4 +31,5 @@ Streamyfin.app
# Except these files # Except these files
!/ios/Streamyfin/ !/ios/Streamyfin/
!/ios/Streamyfin/AppDelegate.mm !/ios/Streamyfin/AppDelegate.mm
!/ios/Streamyfin/Info.plist !/ios/Streamyfin/Info.plist
pc-api-7079014811501811218-719-3b9f15aeccf8.json

View File

@@ -63,7 +63,13 @@
} }
} }
], ],
["expo-build-properties", { "ios": { "deploymentTarget": "14.0" } }] [
"expo-build-properties",
{
"ios": { "deploymentTarget": "14.0" },
"android": { "minSdkVersion": 24 }
}
]
], ],
"experiments": { "experiments": {
"typedRoutes": true "typedRoutes": true

BIN
bun.lockb

Binary file not shown.

View File

@@ -5,7 +5,10 @@
"build": { "build": {
"development": { "development": {
"developmentClient": true, "developmentClient": true,
"distribution": "internal" "distribution": "internal",
"android": {
"buildType": "apk"
}
}, },
"preview": { "preview": {
"distribution": "internal" "distribution": "internal"

View File

@@ -24,17 +24,17 @@
"@react-navigation/native": "^6.0.2", "@react-navigation/native": "^6.0.2",
"@tanstack/react-query": "^5.51.16", "@tanstack/react-query": "^5.51.16",
"@types/uuid": "^10.0.0", "@types/uuid": "^10.0.0",
"expo": "~51.0.24", "expo": "~51.0.26",
"expo-build-properties": "~0.12.4", "expo-build-properties": "~0.12.5",
"expo-constants": "~16.0.2", "expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.21", "expo-dev-client": "~4.0.22",
"expo-device": "~6.0.2", "expo-device": "~6.0.2",
"expo-font": "~12.0.9", "expo-font": "~12.0.9",
"expo-haptics": "~13.0.1", "expo-haptics": "~13.0.1",
"expo-image": "~1.12.13", "expo-image": "~1.12.13",
"expo-keep-awake": "~13.0.2", "expo-keep-awake": "~13.0.2",
"expo-linking": "~6.3.1", "expo-linking": "~6.3.1",
"expo-router": "~3.5.20", "expo-router": "~3.5.21",
"expo-splash-screen": "~0.27.5", "expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1", "expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7", "expo-system-ui": "~3.0.7",
@@ -44,7 +44,7 @@
"nativewind": "^2.0.11", "nativewind": "^2.0.11",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"react-native": "0.74.3", "react-native": "0.74.5",
"react-native-circular-progress": "^1.4.0", "react-native-circular-progress": "^1.4.0",
"react-native-compressor": "^1.8.25", "react-native-compressor": "^1.8.25",
"react-native-gesture-handler": "~2.16.1", "react-native-gesture-handler": "~2.16.1",