Update dependencies

This commit is contained in:
Andres Gomez, Thomas (ITDV RL) 2024-04-12 17:17:51 +02:00
parent d26d2aec77
commit efcc365394
4 changed files with 23 additions and 23 deletions

View file

@ -85,7 +85,7 @@ android {
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.7"
kotlinCompilerExtensionVersion = "1.5.11"
}
packaging {
@ -104,27 +104,27 @@ dependencies {
implementation("androidx.activity:activity-compose:1.8.2")
// Compose
implementation("androidx.compose.ui:ui:1.5.4")
implementation("androidx.compose.ui:ui-util:1.5.4")
implementation("androidx.compose.ui:ui-graphics:1.5.4")
implementation("androidx.compose.ui:ui-tooling-preview:1.5.4")
implementation("androidx.compose.material:material:1.5.4")
implementation("androidx.compose.material3:material3:1.1.2")
debugImplementation("androidx.compose.ui:ui-tooling:1.5.4")
implementation("androidx.compose.ui:ui:1.6.5")
implementation("androidx.compose.ui:ui-util:1.6.5")
implementation("androidx.compose.ui:ui-graphics:1.6.5")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.5")
implementation("androidx.compose.material:material:1.6.5")
implementation("androidx.compose.material3:material3:1.2.1")
debugImplementation("androidx.compose.ui:ui-tooling:1.6.5")
implementation("androidx.constraintlayout:constraintlayout-compose:1.0.1")
// Navigation
implementation("androidx.navigation:navigation-compose:2.7.6")
implementation("androidx.navigation:navigation-compose:2.7.7")
// Accompanist
implementation("com.google.accompanist:accompanist-placeholder:0.32.0")
implementation("com.google.accompanist:accompanist-placeholder:0.34.0")
// Splash Screen support prior to Android 12
implementation("androidx.core:core-splashscreen:1.0.1")
// Google service
implementation("com.google.android.gms:play-services-auth:20.7.0")
implementation("com.google.android.gms:play-services-auth:21.0.0")
implementation(
dependencyNotation = "com.google.api-client:google-api-client-android:1.23.0",
dependencyConfiguration = { exclude("org.apache.httpcomponents") },
@ -135,17 +135,17 @@ dependencies {
)
// Import the BoM for the Firebase platform
implementation(platform("com.google.firebase:firebase-bom:32.7.0"))
implementation(platform("com.google.firebase:firebase-bom:32.8.1"))
implementation("com.google.firebase:firebase-crashlytics-ktx")
implementation("com.google.firebase:firebase-analytics-ktx")
implementation("com.google.firebase:firebase-auth-ktx")
implementation("com.google.firebase:firebase-database-ktx")
// Hilt: Dependency injection
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
implementation("com.google.dagger:hilt-android:2.50")
ksp("com.google.dagger:hilt-android-compiler:2.50")
ksp("com.google.dagger:hilt-compiler:2.50")
implementation("androidx.hilt:hilt-navigation-compose:1.2.0")
implementation("com.google.dagger:hilt-android:2.51.1")
ksp("com.google.dagger:hilt-android-compiler:2.51.1")
ksp("com.google.dagger:hilt-compiler:2.51.1")
// Room
implementation("androidx.room:room-runtime:2.6.1")
@ -153,7 +153,7 @@ dependencies {
ksp("androidx.room:room-compiler:2.6.1")
// Image
implementation("io.coil-kt:coil-compose:2.5.0")
implementation("io.coil-kt:coil-compose:2.6.0")
}
java {

View file

@ -3,7 +3,6 @@ package com.pixelized.rplexicon.ui.screens.search
import android.content.res.Configuration
import androidx.annotation.StringRes
import androidx.compose.foundation.shape.CircleShape
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.FilterChip
import androidx.compose.material3.FilterChipDefaults
import androidx.compose.material3.MaterialTheme
@ -58,7 +57,6 @@ sealed class SearchFilterUio(
)
}
@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun SearchFilter(
modifier: Modifier = Modifier,
@ -77,6 +75,8 @@ fun SearchFilter(
border = FilterChipDefaults.filterChipBorder(
borderColor = MaterialTheme.lexicon.colorScheme.search.chip.unSelected,
selectedBorderColor = MaterialTheme.lexicon.colorScheme.search.chip.selected,
enabled = true,
selected = filter.selected.value,
selectedBorderWidth = 1.dp,
),
selected = filter.selected.value,