Skip to content

Commit

Permalink
Updating libs dependencies (#58)
Browse files Browse the repository at this point in the history
* Updating libs dependencies
  • Loading branch information
omarsanchezv authored Feb 6, 2024
1 parent d3205b4 commit 820899b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Step 2. Add the dependency - n.b. this currently does not support Material 3.

```kotlin
dependencies {
implementation("androidx.compose.material:material:1.5.4")
implementation("androidx.compose.material:material:1.6.0")
implementation("com.github.jump-sdk:jetpack_compose_country_code_picker_emoji:2.2.6")
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.togitech.ccp.component
import android.content.Context
import android.util.Log
import androidx.compose.foundation.focusable
import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.foundation.text.KeyboardActions
Expand Down Expand Up @@ -301,7 +302,11 @@ private fun ClearIconButton(
Icon(
imageVector = imageVector,
contentDescription = stringResource(id = R.string.clear),
tint = colors.trailingIconColor(enabled = true, isError = !isNumberValid).value,
tint = colors.trailingIconColor(
enabled = true,
isError = !isNumberValid,
interactionSource = remember { MutableInteractionSource() },
).value,
)
}

Expand Down
20 changes: 10 additions & 10 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlin = "1.9.20"
kotlin = "1.9.22"
dokka = "1.9.10"

## SDK Versions
Expand All @@ -8,30 +8,30 @@ targetSdk = "34"
compileSdk = "34"

# Dependencies
android-gradle-plugin = "8.2.0-rc03"
android-gradle-plugin = "8.2.2"
gradle-versions = "0.50.0"
detekt = "1.23.3"

accompanist = "0.32.0"
androidx-activity-compose = "1.8.1"
accompanist = "0.34.0"
androidx-activity-compose = "1.8.2"
androidx-core = "1.12.0"
androidx-lifecycle = "2.7.0-rc01"
androidx-lifecycle = "2.7.0"
androidx-test-junit = "1.1.5"

# update version in README when changing below
compose = "1.5.4"
compose = "1.6.0"
# https://androidx.dev/storage/compose-compiler/repository/
# https://developer.android.com/jetpack/androidx/releases/compose-compiler
composeCompiler = "1.5.4"
composeCompiler = "1.5.8"

kotlinx-coroutines = "1.7.3"
kotlinx-collections-immutable = "0.3.6"
kotlinx-collections-immutable = "0.3.7"

libphonenumber = "8.13.25"
libphonenumber = "8.13.28"

junit = "4.13.2"
robolectric = "4.11.1"
paparazzi = "1.3.2-SNAPSHOT"
paparazzi = "1.3.1"

[libraries]
accompanist-systemuicontroller = { module = "com.google.accompanist:accompanist-systemuicontroller", version.ref = "accompanist" }
Expand Down

0 comments on commit 820899b

Please sign in to comment.