Skip to content

Commit 27c43bf

Browse files
Update dependencies
1 parent f792561 commit 27c43bf

File tree

4 files changed

+20
-24
lines changed

4 files changed

+20
-24
lines changed

.github/workflows/publishing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-java@v4
2626
with:
2727
distribution: 'temurin'
28-
java-version: '17'
28+
java-version: '21'
2929
cache: 'gradle'
3030

3131
- name: Set up keystore
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/setup-java@v4
9292
with:
9393
distribution: 'temurin'
94-
java-version: '17'
94+
java-version: '21'
9595
cache: 'gradle'
9696

9797
- name: Run tests

app/build.gradle.kts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
21
import java.io.ByteArrayOutputStream
32
import java.util.Properties
43

@@ -164,15 +163,11 @@ android {
164163
}
165164

166165
compileOptions {
167-
sourceCompatibility = JavaVersion.VERSION_17
168-
targetCompatibility = JavaVersion.VERSION_17
166+
sourceCompatibility = JavaVersion.VERSION_21
167+
targetCompatibility = JavaVersion.VERSION_21
169168
isCoreLibraryDesugaringEnabled = true
170169
}
171170

172-
kotlinOptions {
173-
jvmTarget = JvmTarget.JVM_17.target
174-
}
175-
176171
testOptions.unitTests.isIncludeAndroidResources = true
177172

178173
sourceSets {
@@ -232,16 +227,17 @@ tasks.named {
232227
RegexOption.IGNORE_CASE
233228
)
234229
)
230+
}.configureEach {
231+
dependsOn(tasks.named("openApiGenerate"))
235232
}
236-
.all { dependsOn(tasks.named("openApiGenerate")) }
237233

238234
protobuf {
239235
protoc {
240236
artifact = with(libs.protobuf.protoc.get()) { "${group}:${name}:${version}" }
241237
}
242238

243239
generateProtoTasks {
244-
all().all {
240+
all().configureEach {
245241
builtins {
246242
create("java") { option("lite") }
247243
}

gradle/libs.versions.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
[versions]
2-
androidPlugin = "8.10.1"
3-
kotlinPlugin = "2.1.21"
4-
sentryPlugin = "5.7.0"
5-
openapiPlugin = "7.13.0"
2+
androidPlugin = "8.11.1"
3+
kotlinPlugin = "2.2.0"
4+
sentryPlugin = "5.8.0"
5+
openapiPlugin = "7.14.0"
66
protobufPlugin = "0.9.5"
7-
kspPlugin = "2.1.21-2.0.1"
8-
androidxComposeBom = "2025.06.00"
7+
kspPlugin = "2.2.0-2.0.2"
8+
androidxComposeBom = "2025.06.01"
99
androidxActivity = "1.10.1"
10-
androidxComposeAnimation = "1.8.2"
10+
androidxComposeAnimation = "1.8.3"
1111
androidxComposeMaterialAdaptive = "1.1.0"
1212
androidxCore = "1.16.0"
1313
androidxDatastore = "1.1.7"
1414
androidxEspressoCore = "3.6.1"
1515
androidxHilt = "1.2.0"
1616
androidxLifecycle = "2.9.1"
17-
androidxNavigation = "2.9.0"
17+
androidxNavigation = "2.9.1"
1818
androidxJunit = "1.2.1"
19-
androidxWork = "2.10.1"
19+
androidxWork = "2.10.2"
2020
coilCompose = "2.7.0"
2121
conscrypt = "2.5.3"
2222
desugar = "2.1.5"
2323
hilt = "2.56.2"
2424
junit = "4.13.2"
2525
kotlinxCouroutines = "1.10.2"
26-
kotlinxSerialization = "1.8.1"
26+
kotlinxSerialization = "1.9.0"
2727
moshi = "1.15.2"
28-
okhttp = "4.12.0"
29-
playServicesBase = "18.7.0"
28+
okhttp = "5.1.0"
29+
playServicesBase = "18.7.2"
3030
protobuf = "4.31.1"
3131
retrofit = "3.0.0"
3232

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)