Skip to content

Commit

Permalink
Merge pull request #53 from THEOplayer/update-dependencies
Browse files Browse the repository at this point in the history
* Upgrade to AGP 8.7.3
* Update dependencies
* Set compileSdk to 35
  • Loading branch information
MattiasBuelens authored Dec 11, 2024
2 parents dc849cb + 07e8f56 commit 81bbe5d
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
## Unreleased

* Fix `SeekBar` not working for livestreams with a large `player.seekable.start(0)`,
* 💥 Updated to Jetpack Compose version 1.7.5 ([BOM](https://developer.android.com/jetpack/compose/bom) 2024.11.00).
* 🐛 Fix `SeekBar` not working for livestreams with a large `player.seekable.start(0)`,
such as MPEG-DASH streams that use Unix timestamps for their MPD timeline. ([#52](https://github.com/THEOplayer/android-ui/pull/52))

## v1.9.2 (2024-10-15)
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

android {
namespace = "com.theoplayer.android.ui.demo"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.theoplayer.android.ui.demo"
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]
gradle = "8.5.2"
gradle = "8.7.3"
kotlin-gradle-plugin = "1.9.25"
ktx = "1.13.1"
lifecycle-compose = "2.8.5"
activity-compose = "1.9.2"
ktx = "1.15.0"
lifecycle-compose = "2.8.7"
activity-compose = "1.9.3"
appcompat = "1.7.0"
compose-bom = "2024.09.00"
compose-bom = "2024.11.00"
junit4 = "4.13.2"
playServices-castFramework = "21.5.0"
ui-test-junit4 = "1.7.0" # ...not in BOM for some reason?
ui-test-junit4 = "1.7.5" # ...not in BOM for some reason?
androidx-junit = "1.2.1"
androidx-espresso = "3.6.1"
androidx-mediarouter = "1.7.0"
dokka = "1.9.20"
theoplayer = "8.2.0"
theoplayer = "8.6.2"

[libraries]
androidx-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Nov 20 16:01:06 CET 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {

android {
namespace = "com.theoplayer.android.ui"
compileSdk = 34
compileSdk = 35

defaultConfig {
minSdk = 21
Expand Down

0 comments on commit 81bbe5d

Please sign in to comment.