Skip to content

Commit af469cb

Browse files
authored
Update dependencies (#637)
1 parent 7094889 commit af469cb

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
| Readium | Android min SDK | Android compile SDK | Kotlin compiler (✻) | Gradle (✻) |
1212
|-----------|-----------------|---------------------|---------------------|------------|
13-
| `develop` | 21 | 35 | 2.1.0 | 8.11 |
13+
| `develop` | 21 | 35 | 2.1.20 | 8.13 |
1414
| 3.0.0 | 21 | 34 | 1.9.24 | 8.6.0 |
1515
| 2.3.0 | 21 | 33 | 1.7.10 | 6.9.3 |
1616

gradle/libs.versions.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
[versions]
22

3-
kotlin = "2.1.0"
4-
agp = "8.7.2"
5-
desugar_jdk_libs = "2.1.2"
3+
kotlin = "2.1.20"
4+
agp = "8.9.1"
5+
desugar_jdk_libs = "2.1.5"
66
gradle-maven-publish-plugin = "0.28.0"
77

8-
androidx-activity = "1.9.3"
8+
androidx-activity = "1.10.1"
99
androidx-annotation = "1.9.1"
1010
androidx-appcompat = "1.7.0"
1111
androidx-browser = "1.8.0"
1212
androidx-cardview = "1.0.0"
13-
androidx-compose-animation = "1.7.5"
14-
androidx-compose-foundation = "1.7.5"
15-
androidx-compose-material = "1.7.5"
13+
androidx-compose-animation = "1.7.8"
14+
androidx-compose-foundation = "1.7.8"
15+
androidx-compose-material = "1.7.8"
1616
androidx-compose-material3 = "1.3.1"
17-
androidx-compose-runtime = "1.7.5"
18-
androidx-compose-ui = "1.7.5"
19-
androidx-constraintlayout = "2.2.0"
17+
androidx-compose-runtime = "1.7.8"
18+
androidx-compose-ui = "1.7.8"
19+
androidx-constraintlayout = "2.2.1"
2020
androidx-core = "1.15.0"
21-
androidx-datastore = "1.1.1"
22-
androidx-fragment-ktx = "1.8.5"
21+
androidx-datastore = "1.1.4"
22+
androidx-fragment-ktx = "1.8.6"
2323
androidx-legacy = "1.0.0"
2424
androidx-lifecycle = "2.8.7"
25-
androidx-media3 = "1.5.0"
26-
androidx-navigation = "2.8.4"
27-
androidx-paging = "3.3.4"
28-
androidx-recyclerview = "1.3.2"
25+
androidx-media3 = "1.6.0"
26+
androidx-navigation = "2.8.9"
27+
androidx-paging = "3.3.6"
28+
androidx-recyclerview = "1.4.0"
2929
androidx-room = "2.6.1"
3030
androidx-viewpager2 = "1.1.0"
31-
androidx-webkit = "1.12.1"
31+
androidx-webkit = "1.13.0"
3232

3333
assertj = "3.26.3"
3434

@@ -40,14 +40,14 @@ joda-time = "2.13.0"
4040
jsoup = "1.18.1"
4141
junit = "4.13.2"
4242

43-
kotlinx-coroutines = "1.9.0"
44-
kotlinx-coroutines-test = "1.9.0"
43+
kotlinx-coroutines = "1.10.1"
44+
kotlinx-coroutines-test = "1.10.1"
4545
kotlinx-datetime = "0.6.1"
4646
kotlinx-serialization-json = "1.7.3"
4747

4848
# Make sure to align with the Kotlin version.
4949
# See https://github.com/google/ksp/releases
50-
ksp = "2.1.0-1.0.29"
50+
ksp = "2.1.20-1.0.32"
5151

5252
ktlint = "12.1.1"
5353

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

readium/navigators/media/tts/src/main/java/org/readium/navigator/media/tts/session/TtsSessionAdapter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ internal class TtsSessionAdapter<E : TtsEngine.Error>(
8585
)
8686

8787
init {
88-
val streamType = Util.getStreamTypeForAudioUsage(audioAttributes.usage)
88+
val streamType = audioAttributes.streamType
8989
streamVolumeManager.setStreamType(streamType)
9090
}
9191

@@ -452,7 +452,7 @@ internal class TtsSessionAdapter<E : TtsEngine.Error>(
452452
}
453453

454454
override fun getTrackSelectionParameters(): TrackSelectionParameters {
455-
return TrackSelectionParameters.Builder(application)
455+
return TrackSelectionParameters.Builder()
456456
.build()
457457
}
458458

0 commit comments

Comments
 (0)