Skip to content

Commit cae8bea

Browse files
committed
chore: Update dependencies
This commit updates several development and project dependencies to their latest versions. - **Android Gradle Plugin:** 8.13.1 -> 8.13.2 - **Kotlin:** 2.2.21 -> 2.3.0 - **AndroidX Lint:** 31.13.1 -> 31.13.2 - **Protobuf:** 4.33.1 -> 4.33.2 - **Protobuf Plugin:** 0.9.5 -> 0.9.6 - **Mockito:** 5.20.0 -> 5.21.0 - **Kover:** 0.9.3 -> 0.9.4 - **Sonar:** 7.2.0.6526 -> 7.2.1.6560 - **Cloudy:** 0.2.7 -> 0.3.0
1 parent 3d348ce commit cae8bea

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
accompanist = "0.37.3"
33
androidDesugarJdkLibs = "2.1.5"
44
androidGradlePlugin = "8.13.2"
5-
androidxActivity = "1.12.1"
5+
androidxActivity = "1.12.2"
66
androidxAppCompat = "1.7.1"
77
androidxBrowser = "1.9.0"
8-
androidxComposeBom = "2025.12.00"
9-
androidxComposeRuntimeTracing = "1.10.0"
8+
androidxComposeBom = "2026.01.00"
9+
androidxComposeRuntimeTracing = "1.10.1"
1010
androidxCore = "1.17.0"
1111
androidxCoreSplashscreen = "1.2.0"
1212
androidxDataStore = "1.2.0"
@@ -37,7 +37,7 @@ kotlinxDatetime = "0.7.1"
3737
kotlinxSerializationJson = "1.9.0"
3838
ksp = "2.2.20-2.0.3"
3939
lint = "31.13.2"
40-
protobuf = "4.33.2"
40+
protobuf = "4.33.4"
4141
protobufPlugin = "0.9.6"
4242
robolectric = "4.16"
4343
secrets = "2.0.1"
@@ -52,18 +52,18 @@ slf4j = "2.0.17"
5252
gson = "2.13.2"
5353
googlePhoneNumber = "9.0.21"
5454
zxing = "3.5.4"
55-
eudiWalletCore = "0.22.0"
55+
eudiWalletCore = "0.23.0-SNAPSHOT"
5656
cameraCore = "1.5.2"
57-
owaspDependencyCheck = "12.1.9"
57+
owaspDependencyCheck = "12.2.0"
5858
material3 = "1.4.0"
5959
kover = "0.9.4"
60-
sonar = "7.2.1.6560"
60+
sonar = "7.2.2.6593"
6161
baselineprofile = "1.4.1"
6262
timber = "5.0.1"
6363
treessence = "1.1.2"
6464
rqesUiSDK = "0.3.4"
6565
androidxRoom = "2.8.4"
66-
cloudy = "0.3.0"
66+
cloudy = "0.4.0"
6767

6868
[libraries]
6969
accompanist-permissions = { group = "com.google.accompanist", name = "accompanist-permissions", version.ref = "accompanist" }

ui-logic/src/main/java/eu/europa/ec/uilogic/extension/ExpandableListItemExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fun ExpandableListItemUi.toggleCheckboxState(id: String): ExpandableListItemUi {
4646
is ExpandableListItemUi.SingleListItem -> {
4747
if (this.header.itemId == id && this.header.trailingContentData is ListItemTrailingContentDataUi.Checkbox) {
4848
val currentItem =
49-
this.header.trailingContentData as ListItemTrailingContentDataUi.Checkbox
49+
this.header.trailingContentData
5050

5151
this.copy(
5252
header = this.header.copy(
@@ -83,7 +83,7 @@ fun List<ExpandableListItemUi>.toggleExpansionState(id: String): List<Expandable
8383
is ExpandableListItemUi.NestedListItem -> {
8484
if (nestedItem.header.itemId == id && nestedItem.header.trailingContentData is ListItemTrailingContentDataUi.Icon) {
8585
val currentTrailingContent =
86-
nestedItem.header.trailingContentData as ListItemTrailingContentDataUi.Icon
86+
nestedItem.header.trailingContentData
8787

8888
val newIsExpanded = !nestedItem.isExpanded
8989
val newCollapsed = nestedItem.header.copy(

0 commit comments

Comments
 (0)