Skip to content

Commit ceefef6

Browse files
committed
Updated dependencies and SDK.
1 parent 2a2f2c6 commit ceefef6

File tree

2 files changed

+25
-23
lines changed

2 files changed

+25
-23
lines changed

gradle/libs.versions.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[versions]
2-
agp = "8.13.1"
3-
kotlin = "2.1.0"
4-
coreKtx = "1.16.0"
2+
agp = "8.13.2"
3+
kotlin = "2.3.0"
4+
coreKtx = "1.17.0"
55
junit = "4.13.2"
6-
junitVersion = "1.2.1"
7-
espressoCore = "3.6.1"
8-
lifecycleRuntimeKtx = "2.8.7"
9-
activityCompose = "1.10.1"
10-
composeBom = "2025.04.01"
11-
webkit = "1.13.0"
12-
ausweis = "2.2.1"
6+
junitVersion = "1.3.0"
7+
espressoCore = "3.7.0"
8+
lifecycleRuntimeKtx = "2.10.0"
9+
activityCompose = "1.12.1"
10+
composeBom = "2025.12.00"
11+
webkit = "1.14.0"
12+
ausweis = "2.4.0"
1313
credentials = "1.5.0"
14-
yubikit = "2.8.0"
14+
yubikit = "3.0.0"
1515
yubifork = "wwwwallet~with-sign-ext-SNAPSHOT"
1616
logback = "3.0.0"
17-
test-json = "20231013"
18-
coroutines = "1.10.1"
19-
androidxtest = "1.6.1"
20-
ktlint = "12.2.0"
21-
gps-ic = "16.0.0-alpha06"
22-
registryDigitalcredentialsMdoc = "1.0.0-alpha01"
23-
datastore = "1.1.7"
17+
test-json = "20250517"
18+
coroutines = "1.10.2"
19+
androidxtest = "1.7.0"
20+
ktlint = "14.0.1"
21+
gps-ic = "16.0.0-alpha08"
22+
registryDigitalcredentialsMdoc = "1.0.0-alpha03"
23+
datastore = "1.2.0"
2424
cbor = "4.5.6"
2525
cose = "1.1.0"
2626

wrapper/build.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import build.env
22
import build.fileFromEnv
3+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
34

45
plugins {
56
alias(libs.plugins.android.application)
@@ -10,12 +11,12 @@ plugins {
1011

1112
android {
1213
namespace = "io.yubicolabs.wwwwallet"
13-
compileSdk = 35
14+
compileSdk = 36
1415

1516
defaultConfig {
1617
applicationId = namespace
1718
minSdk = 33
18-
targetSdk = 35
19+
targetSdk = 36
1920
versionCode = (property("wallet.versionCode") as String).toInt()
2021
versionName = property("wallet.versionName") as String
2122

@@ -70,10 +71,11 @@ android {
7071
targetCompatibility = JavaVersion.VERSION_11
7172
}
7273

73-
kotlinOptions {
74-
jvmTarget = "11"
74+
kotlin {
75+
compilerOptions {
76+
jvmTarget = JvmTarget.JVM_11
77+
}
7578
}
76-
7779
buildFeatures {
7880
compose = true
7981
buildConfig = true

0 commit comments

Comments
 (0)