Upgrade dependencies

activity 1.6.0 -> 1.6.1
material 1.6.1 -> 1.7.0
navigation 2.5.2 -> 2.5.3
jellyfin 1.3.6 -> 1.3.7
aboutLibraries 10.5.0 -> 10.5.1

Includes some additional changes to the material shape appearance to keep the current look
This commit is contained in:
Jarne Demeulemeester 2022-10-24 23:57:48 +02:00
parent 265d52d566
commit aa0aee4947
No known key found for this signature in database
GPG key ID: 65C6006F2032DD14
6 changed files with 11 additions and 19 deletions

View file

@ -64,12 +64,12 @@ dependencies {
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.appcompat:appcompat:1.5.1")
implementation("androidx.activity:activity-ktx:1.6.0")
implementation("androidx.activity:activity-ktx:1.6.1")
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
// Material
implementation("com.google.android.material:material:1.6.1")
implementation("com.google.android.material:material:1.7.0")
// ConstraintLayout
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
@ -80,7 +80,7 @@ dependencies {
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
// Navigation
val navigationVersion = "2.5.2"
val navigationVersion = "2.5.3"
implementation("androidx.navigation:navigation-fragment-ktx:$navigationVersion")
implementation("androidx.navigation:navigation-ui-ktx:$navigationVersion")
@ -99,7 +99,7 @@ dependencies {
implementation("androidx.preference:preference-ktx:$preferenceVersion")
// Jellyfin
val jellyfinVersion = "1.3.6"
val jellyfinVersion = "1.3.7"
implementation("org.jellyfin.sdk:jellyfin-core:$jellyfinVersion")
// Glide
@ -125,7 +125,7 @@ dependencies {
val timberVersion = "5.0.1"
implementation("com.jakewharton.timber:timber:$timberVersion")
val aboutLibrariesVersion = "10.5.0"
val aboutLibrariesVersion = "10.5.1"
implementation("com.mikepenz:aboutlibraries-core:$aboutLibrariesVersion")
implementation("com.mikepenz:aboutlibraries:$aboutLibrariesVersion")

View file

@ -59,7 +59,6 @@
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/edit_text_server_address_layout"
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"

View file

@ -59,7 +59,6 @@
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/edit_text_username_layout"
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"
@ -78,7 +77,6 @@
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/edit_text_password_layout"
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="24dp"

View file

@ -1,14 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ShapeAppearance.Findroid.SmallComponent" parent="ShapeAppearance.Material3.SmallComponent">
<style name="ShapeAppearance.Findroid.Corner.ExtraSmall" parent="ShapeAppearance.Material3.Corner.ExtraSmall">
<item name="cornerSize">10dp</item>
</style>
<style name="ShapeAppearance.Findroid.MediumComponent" parent="ShapeAppearance.Material3.MediumComponent">
<item name="cornerSize">10dp</item>
</style>
<style name="ShapeAppearance.Findroid.LargeComponent" parent="ShapeAppearance.Material3.LargeComponent">
<style name="ShapeAppearance.Findroid.Corner.Small" parent="ShapeAppearance.Material3.Corner.Small">
<item name="cornerSize">10dp</item>
</style>

View file

@ -28,9 +28,8 @@
<item name="android:windowLightStatusBar">?attr/isLightTheme</item>
<!-- Shapes -->
<item name="shapeAppearanceSmallComponent">@style/ShapeAppearance.Findroid.SmallComponent</item>
<item name="shapeAppearanceMediumComponent">@style/ShapeAppearance.Findroid.MediumComponent</item>
<item name="shapeAppearanceLargeComponent">@style/ShapeAppearance.Findroid.LargeComponent</item>
<item name="shapeAppearanceCornerExtraSmall">@style/ShapeAppearance.Findroid.Corner.ExtraSmall</item>
<item name="shapeAppearanceCornerSmall">@style/ShapeAppearance.Findroid.Corner.Small</item>
<!-- Toolbar -->
<item name="toolbarStyle">@style/Widget.Material3.Toolbar.Surface</item>

View file

@ -15,13 +15,13 @@ buildscript {
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle.kts files
val navVersion = "2.5.2"
val navVersion = "2.5.3"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion")
val hiltVersion = "2.44"
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
val aboutLibrariesVersion = "10.5.0"
val aboutLibrariesVersion = "10.5.1"
classpath("com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$aboutLibrariesVersion")
}
}