From 5b3993beaa91d3b676b55644446a737b44ad4bb6 Mon Sep 17 00:00:00 2001 From: Lory-Stan TANASI Date: Thu, 12 Sep 2024 17:01:58 +0200 Subject: [PATCH 1/2] chore(gradle): update dependencies --- app/build.gradle | 20 ++++++++++---------- navigation/build.gradle | 12 ++++++------ retrofit-jsoup-converter/build.gradle | 10 +++++----- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a60a8e47..a0520818 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -53,8 +53,8 @@ android { dependencies { implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7' - implementation 'androidx.navigation:navigation-ui-ktx:2.7.7' + implementation 'androidx.navigation:navigation-fragment-ktx:2.8.0' + implementation 'androidx.navigation:navigation-ui-ktx:2.8.0' implementation project(path: ':navigation') implementation 'androidx.core:core-ktx:1.13.1' @@ -63,11 +63,11 @@ dependencies { implementation 'com.github.bumptech.glide:okhttp3-integration:4.16.0' - implementation 'androidx.media3:media3-exoplayer:1.4.0' - implementation 'androidx.media3:media3-exoplayer-dash:1.4.0' - implementation 'androidx.media3:media3-exoplayer-hls:1.4.0' - implementation "androidx.media3:media3-session:1.4.0" - implementation 'androidx.media3:media3-ui:1.4.0' + implementation 'androidx.media3:media3-exoplayer:1.4.1' + implementation 'androidx.media3:media3-exoplayer-dash:1.4.1' + implementation 'androidx.media3:media3-exoplayer-hls:1.4.1' + implementation "androidx.media3:media3-session:1.4.1" + implementation 'androidx.media3:media3-ui:1.4.1' implementation 'com.squareup.retrofit2:retrofit:2.11.0' implementation 'com.squareup.okhttp3:okhttp:4.12.0' @@ -77,9 +77,9 @@ dependencies { implementation 'com.squareup.retrofit2:converter-gson:2.11.0' implementation 'org.jsoup:jsoup:1.17.2' - implementation 'androidx.fragment:fragment-ktx:1.8.2' - implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.4' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.4' + implementation 'androidx.fragment:fragment-ktx:1.8.3' + implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.8.5' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.5' implementation 'androidx.tvprovider:tvprovider:1.1.0-alpha01' diff --git a/navigation/build.gradle b/navigation/build.gradle index 02cd0829..3b5ed217 100644 --- a/navigation/build.gradle +++ b/navigation/build.gradle @@ -32,12 +32,12 @@ android { dependencies { - implementation 'androidx.core:core-ktx:1.13.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' 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' - implementation 'androidx.navigation:navigation-ui-ktx:2.7.7' + implementation 'androidx.navigation:navigation-ui-ktx:2.8.0' } \ No newline at end of file diff --git a/retrofit-jsoup-converter/build.gradle b/retrofit-jsoup-converter/build.gradle index 28a29399..7ca498ab 100644 --- a/retrofit-jsoup-converter/build.gradle +++ b/retrofit-jsoup-converter/build.gradle @@ -32,12 +32,12 @@ android { dependencies { - implementation 'androidx.core:core-ktx:1.13.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' 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' implementation 'com.squareup.retrofit2:retrofit:2.11.0' From 16a4537de8e678e1f0251adb873871e62d02bebc Mon Sep 17 00:00:00 2001 From: Lory-Stan TANASI Date: Thu, 12 Sep 2024 17:04:27 +0200 Subject: [PATCH 2/2] feat(app): update app version to 1.6.10 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a0520818..bec2c7ab 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,8 +14,8 @@ android { applicationId "com.tanasi.streamflix" minSdk 21 targetSdk 34 - versionCode 27 - versionName "1.6.10" + versionCode 28 + versionName "1.6.11" def properties = new Properties() properties.load(project.rootProject.file('local.properties').newDataInputStream())