Skip to content

Commit

Permalink
Bump test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bentrengrove committed Aug 14, 2024
1 parent 9be1b69 commit bf62995
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[versions]

compose = "1.7.0-beta04"
compose = "1.7.0-beta07"
composeCompiler = "1.5.8"
composeMaterial3 = "1.0.1"
composesnapshot = "-" # a single character = no snapshot

dokka = "1.8.10"

# gradlePlugin and lint need to be updated together
gradlePlugin = "8.3.2"
gradlePlugin = "8.5.2"
lintMinCompose = "30.0.0"

ktlint = "0.45.2"
Expand All @@ -18,7 +18,7 @@ okhttp = "3.12.13"
coil = "1.3.2"

androidlint = "25.3.0"
androidxtest = "1.4.0"
androidxtest = "1.6.1"
androidxnavigation = "2.7.7"
androidxWindow = "1.0.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import androidx.compose.material.Text
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.FavoriteBorder
import androidx.compose.runtime.Composable
import androidx.compose.runtime.SideEffect
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
Expand All @@ -42,6 +43,7 @@ import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.input.pointer.pointerInput
import androidx.compose.ui.layout.Layout
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.unit.IntOffset
import androidx.compose.ui.unit.dp
Expand All @@ -67,7 +69,6 @@ class DraggableFoldAwareColumnSample : ComponentActivity() {
@Composable
fun DraggableExample(activity: Activity) {
var offset by remember { mutableStateOf(Offset(0f, 0f)) }

FoldAwareColumn(
modifier = Modifier
.offset { IntOffset(offset.x.roundToInt(), offset.y.roundToInt()) }
Expand Down

0 comments on commit bf62995

Please sign in to comment.