mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 15:50:16 +02:00
Bump dependency versions, notably media3 (#496)
## Description Bumps dependency versions, notably media3/ExoPlayer to `1.9.0` ### Related issues Fixes #108 Fixes #355 Fixes #479
This commit is contained in:
parent
7581b05b97
commit
8479d8621d
3 changed files with 16 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -53,7 +53,9 @@ app/libs/
|
||||||
ffmpeg_decoder/
|
ffmpeg_decoder/
|
||||||
app/release/
|
app/release/
|
||||||
app/debug/
|
app/debug/
|
||||||
<<<<<<< HEAD
|
.vscode
|
||||||
|
.kotlin
|
||||||
|
docs/
|
||||||
|
|
||||||
# mpv
|
# mpv
|
||||||
app/src/main/obj/
|
app/src/main/obj/
|
||||||
|
|
|
||||||
|
|
@ -447,6 +447,14 @@ class MpvPlayer(
|
||||||
|
|
||||||
override fun getVolume(): Float = 1f
|
override fun getVolume(): Float = 1f
|
||||||
|
|
||||||
|
override fun mute() {
|
||||||
|
volume = 0f
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun unmute() {
|
||||||
|
volume = 1f
|
||||||
|
}
|
||||||
|
|
||||||
override fun clearVideoSurface(): Unit = throw UnsupportedOperationException()
|
override fun clearVideoSurface(): Unit = throw UnsupportedOperationException()
|
||||||
|
|
||||||
override fun clearVideoSurface(surface: Surface?): Unit = throw UnsupportedOperationException()
|
override fun clearVideoSurface(surface: Surface?): Unit = throw UnsupportedOperationException()
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[versions]
|
[versions]
|
||||||
aboutLibraries = "13.1.0"
|
aboutLibraries = "13.1.0"
|
||||||
acra = "5.13.1"
|
acra = "5.13.1"
|
||||||
agp = "8.13.1"
|
agp = "8.13.2"
|
||||||
auto-service = "1.1.1"
|
auto-service = "1.1.1"
|
||||||
autoServiceKsp = "1.2.0"
|
autoServiceKsp = "1.2.0"
|
||||||
desugar_jdk_libs = "2.1.5"
|
desugar_jdk_libs = "2.1.5"
|
||||||
|
|
@ -10,7 +10,7 @@ kotlin = "2.2.21"
|
||||||
ksp = "2.3.0"
|
ksp = "2.3.0"
|
||||||
coreKtx = "1.17.0"
|
coreKtx = "1.17.0"
|
||||||
appcompat = "1.7.1"
|
appcompat = "1.7.1"
|
||||||
composeBom = "2025.12.00"
|
composeBom = "2025.12.01"
|
||||||
multiplatformMarkdownRenderer = "0.38.1"
|
multiplatformMarkdownRenderer = "0.38.1"
|
||||||
programguide = "1.6.0"
|
programguide = "1.6.0"
|
||||||
slf4j2Timber = "1.2"
|
slf4j2Timber = "1.2"
|
||||||
|
|
@ -18,8 +18,8 @@ timber = "5.0.1"
|
||||||
tvFoundation = "1.0.0-alpha12"
|
tvFoundation = "1.0.0-alpha12"
|
||||||
tvMaterial = "1.0.1"
|
tvMaterial = "1.0.1"
|
||||||
lifecycleRuntimeKtx = "2.10.0"
|
lifecycleRuntimeKtx = "2.10.0"
|
||||||
activityCompose = "1.12.1"
|
activityCompose = "1.12.2"
|
||||||
androidx-media3 = "1.8.0"
|
androidx-media3 = "1.9.0"
|
||||||
coil = "3.3.0"
|
coil = "3.3.0"
|
||||||
jellyfin-sdk = "1.7.1"
|
jellyfin-sdk = "1.7.1"
|
||||||
nav3Core = "1.0.0"
|
nav3Core = "1.0.0"
|
||||||
|
|
@ -28,7 +28,7 @@ material3AdaptiveNav3 = "1.0.0-alpha03"
|
||||||
protobuf = "0.9.5"
|
protobuf = "0.9.5"
|
||||||
datastore = "1.2.0"
|
datastore = "1.2.0"
|
||||||
kotlinx-serialization = "1.9.0"
|
kotlinx-serialization = "1.9.0"
|
||||||
protobuf-javalite = "4.33.1"
|
protobuf-javalite = "4.33.2"
|
||||||
hilt = "2.57.2"
|
hilt = "2.57.2"
|
||||||
room = "2.8.4"
|
room = "2.8.4"
|
||||||
preferenceKtx = "1.2.1"
|
preferenceKtx = "1.2.1"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue