Skip to content

Commit 6d0ebee

Browse files
committed
Update project
1 parent 0109155 commit 6d0ebee

3 files changed

Lines changed: 4 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1-
# Kotlin
21
.kotlin
32

4-
# Gradle
53
.gradle
64
build
75
build-cache
86
generated
97

10-
# Idea
118
.idea
129

13-
/config/keystore_release.jks
14-
/config/keystore.properties
15-
16-
local.properties
17-
releaseNotes.txt
10+
local.properties

app/src/main/kotlin/org/michaelbel/aliases/ui/IconBox.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fun IconBox(
3333
color = if (isEnabled) MaterialTheme.colorScheme.tertiaryContainer else Color.Transparent,
3434
shape = MaterialTheme.shapes.large
3535
)
36-
.clickable { onClick() },
36+
.clickable(onClick = onClick),
3737
contentAlignment = Alignment.Center
3838
) {
3939
Icon(

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ min-sdk = "31"
33
compile-sdk = "35"
44
target-sdk = "35"
55
jdk = "21"
6-
agp = "8.9.0"
7-
kotlin = "2.1.10"
6+
agp = "8.9.1"
7+
kotlin = "2.1.20"
88
google-material = "1.12.0"
99
androidx-activity = "1.10.1"
1010
androidx-compose-ui = "1.7.8"

0 commit comments

Comments
 (0)