From 6303303745fda6d6a21c0c79d1f221012e4d49cb Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:58:38 +0200 Subject: [PATCH] chore(*): upgrade dependencies --- build.gradle | 4 ++-- compose-player/build.gradle | 6 ++++-- examples/compose/build.gradle | 6 +++--- examples/view/build.gradle | 4 ++-- gradle/wrapper/gradle-wrapper.properties | 2 +- player/build.gradle | 7 +++---- 6 files changed, 15 insertions(+), 14 deletions(-) diff --git a/build.gradle b/build.gradle index 56ba738..8f1cff9 100644 --- a/build.gradle +++ b/build.gradle @@ -20,8 +20,8 @@ buildscript { } } plugins { - id 'com.android.application' version '8.2.0' apply false - id 'com.android.library' version '8.2.0' apply false + id 'com.android.application' version '8.5.1' apply false + id 'com.android.library' version '8.5.1' apply false id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false id 'org.jetbrains.dokka' version "$dokkaVersion" } diff --git a/compose-player/build.gradle b/compose-player/build.gradle index e266925..5ece1b5 100644 --- a/compose-player/build.gradle +++ b/compose-player/build.gradle @@ -42,8 +42,10 @@ dependencies { implementation "androidx.media:media:1.7.0" testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + + androidTestImplementation 'androidx.test.ext:junit:1.2.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' androidTestImplementation "androidx.compose.ui:ui-test-junit4" + debugImplementation "androidx.compose.ui:ui-tooling" } \ No newline at end of file diff --git a/examples/compose/build.gradle b/examples/compose/build.gradle index 81a9077..fcf5683 100644 --- a/examples/compose/build.gradle +++ b/examples/compose/build.gradle @@ -44,10 +44,10 @@ android { dependencies { implementation project(':compose-player') - implementation 'androidx.appcompat:appcompat:1.6.1' - implementation 'com.google.android.material:material:1.10.0' + implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'com.google.android.material:material:1.12.0' - def composeBom = platform('androidx.compose:compose-bom:2023.10.01') + def composeBom = platform('androidx.compose:compose-bom:2024.06.00') implementation composeBom androidTestImplementation composeBom diff --git a/examples/view/build.gradle b/examples/view/build.gradle index 6deeaa2..f87b95c 100644 --- a/examples/view/build.gradle +++ b/examples/view/build.gradle @@ -48,6 +48,6 @@ dependencies { implementation 'androidx.preference:preference-ktx:1.2.1' testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation 'androidx.test.ext:junit:1.2.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index bf5c79d..9e4db89 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Tue Jan 17 17:38:22 CET 2023 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME diff --git a/player/build.gradle b/player/build.gradle index cf8a4c6..19ec5eb 100644 --- a/player/build.gradle +++ b/player/build.gradle @@ -24,16 +24,15 @@ dependencies { implementation "androidx.media3:media3-exoplayer:${exoPlayerVersion}" implementation "androidx.media3:media3-exoplayer-hls:${exoPlayerVersion}" implementation "androidx.media:media:1.7.0" - implementation "androidx.fragment:fragment-ktx:1.7.1" - implementation "com.google.android.material:material:1.12.0" + implementation "androidx.fragment:fragment-ktx:1.8.1" testImplementation 'org.robolectric:robolectric:4.12.2' testImplementation 'org.robolectric:shadows-httpclient:4.5.1' testImplementation 'junit:junit:4.13.2' testImplementation 'io.mockk:mockk:1.13.9' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation 'androidx.test.ext:junit:1.2.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' androidTestImplementation "video.api:android-api-client:1.5.2" } \ No newline at end of file