Skip to content

Commit

Permalink
Bump the androidx group with 5 updates (#739)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gaëtan Muller <[email protected]>
  • Loading branch information
dependabot[bot] and MGaetan89 authored Oct 9, 2024
1 parent 6967415 commit 50b2a61
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ dependencyAnalysis {
all {
onUnusedDependencies {
severity("fail")
exclude(libs.androidx.compose.ui.tooling.asProvider())
}
}

Expand Down
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
android-gradle-plugin = "8.7.0"
androidx-activity = "1.9.2"
androidx-annotation = "1.8.2"
androidx-compose = "2024.09.01"
androidx-compose = "2024.09.03"
androidx-compose-material-navigation = "1.7.0-beta01" # TODO Remove this once https://issuetracker.google.com/issues/347719428 is resolved
androidx-core = "1.13.1"
androidx-datastore = "1.1.1"
androidx-fragment = "1.8.3"
androidx-fragment = "1.8.4"
androidx-lifecycle = "2.8.6"
androidx-media3 = "1.4.1"
androidx-navigation = "2.8.0"
androidx-navigation = "2.8.2"
androidx-paging = "3.3.2"
androidx-test-core = "1.6.1"
androidx-test-ext-junit = "1.2.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Modifier
import androidx.compose.ui.composed
import androidx.compose.ui.focus.onFocusChanged
import androidx.compose.ui.input.key.Key
import androidx.compose.ui.input.key.KeyEventType
Expand Down Expand Up @@ -130,14 +129,12 @@ fun Modifier.toggleable(
enabled: Boolean = true,
role: Role? = Role.Switch,
delayedVisibilityState: DelayedVisibilityState
): Modifier = composed {
toggleable(
enabled = enabled,
role = role,
interactionSource = null,
delayedVisibilityState = delayedVisibilityState
)
}
): Modifier = toggleable(
enabled = enabled,
role = role,
interactionSource = null,
delayedVisibilityState = delayedVisibilityState,
)

/**
* Toggleable
Expand Down

0 comments on commit 50b2a61

Please sign in to comment.