Updates dependencies

pull/754/head
Vitor Pamplona 2024-01-29 16:28:53 -05:00
rodzic 3ed45f282c
commit 14e9a91d40
3 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -181,7 +181,7 @@ dependencies {
// Adaptive Layout / Two Pane
implementation "androidx.compose.material3:material3-window-size-class:${material3_version}"
implementation "com.google.accompanist:accompanist-adaptive:0.32.0"
implementation 'com.google.accompanist:accompanist-adaptive:0.34.0'
// Lifecycle
@ -251,7 +251,7 @@ dependencies {
playImplementation 'com.google.mlkit:translate:17.0.2'
// PushNotifications
playImplementation platform('com.google.firebase:firebase-bom:32.7.0')
playImplementation platform('com.google.firebase:firebase-bom:32.7.1')
playImplementation 'com.google.firebase:firebase-messaging-ktx'
//PushNotifications(FDroid)
@ -276,8 +276,8 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation 'io.mockk:mockk:1.13.9'
androidTestImplementation 'androidx.test.ext:junit:1.2.0-alpha02'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.2.0-alpha02'
androidTestImplementation 'androidx.test.ext:junit:1.2.0-alpha03'
androidTestImplementation 'androidx.test.ext:junit-ktx:1.2.0-alpha03'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"

Wyświetl plik

@ -388,7 +388,7 @@ fun CreateTextWithEmoji(
.merge(
TextStyle(
color = textColor,
textAlign = textAlign,
textAlign = TextAlign.Unspecified,
fontWeight = fontWeight,
fontSize = fontSize,
),
@ -446,7 +446,7 @@ fun CreateTextWithEmoji(
.merge(
TextStyle(
color = textColor,
textAlign = textAlign,
textAlign = TextAlign.Unspecified,
fontWeight = fontWeight,
fontSize = fontSize,
),

Wyświetl plik

@ -3,14 +3,14 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
ext {
fragment_version = "1.6.2"
lifecycle_version = '2.6.2'
compose_ui_version = '1.5.4'
lifecycle_version = '2.7.0'
compose_ui_version = '1.6.0'
nav_version = '2.7.6'
room_version = "2.4.3"
accompanist_version = '0.32.0'
accompanist_version = '0.34.0'
coil_version = '2.5.0'
vico_version = '1.13.1'
media3_version = '1.2.0'
media3_version = '1.2.1'
core_ktx_version = '1.12.0'
material3_version = '1.1.2'
}