From 4eb648a81a8b904cbfaea421d65e79454464e64a Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:47:48 +0200 Subject: [PATCH] chore(deps): upgrade dependencies for lib and example --- build.gradle | 2 +- example/build.gradle | 15 +++++++-------- livestream/build.gradle | 9 ++++----- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/build.gradle b/build.gradle index b89db77..4f6b1d3 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { targetSdk = 34 // Kotlin - kotlinVersion = "1.9.22" + kotlinVersion = "2.0.20" dokkaVersion = "1.9.10" // Example diff --git a/example/build.gradle b/example/build.gradle index e09e471..64611cb 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -39,18 +39,17 @@ android { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" - implementation 'androidx.core:core-ktx:1.12.0' - implementation 'androidx.appcompat:appcompat:1.6.1' - implementation 'com.google.android.material:material:1.11.0' + implementation 'androidx.core:core-ktx:1.13.1' + implementation 'androidx.appcompat:appcompat:1.7.0' + implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'androidx.navigation:navigation-fragment-ktx:2.7.6' - implementation 'androidx.navigation:navigation-ui-ktx:2.7.6' + implementation 'androidx.navigation:navigation-fragment-ktx:2.8.1' + implementation 'androidx.navigation:navigation-ui-ktx:2.8.1' implementation 'androidx.preference:preference-ktx:1.2.1' implementation project(":livestream") 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/livestream/build.gradle b/livestream/build.gradle index 39b6ed8..55d0961 100644 --- a/livestream/build.gradle +++ b/livestream/build.gradle @@ -53,14 +53,13 @@ dokkaHtml { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion" - implementation 'androidx.core:core-ktx:1.12.0' - implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.core:core-ktx:1.13.1' + implementation 'androidx.appcompat:appcompat:1.7.0' implementation "io.github.thibaultbee:streampack:$streamPackVersion" implementation "io.github.thibaultbee:streampack-extension-rtmp:$streamPackVersion" implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' 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