Updates dependencies

This commit is contained in:
Vitor Pamplona
2024-01-29 16:28:53 -05:00
parent 3ed45f282c
commit 14e9a91d40
3 changed files with 10 additions and 10 deletions

View File

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

View File

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

View File

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