File tree Expand file tree Collapse file tree 4 files changed +20
-24
lines changed Expand file tree Collapse file tree 4 files changed +20
-24
lines changed Original file line number Diff line number Diff line change 25
25
uses : actions/setup-java@v4
26
26
with :
27
27
distribution : ' temurin'
28
- java-version : ' 17 '
28
+ java-version : ' 21 '
29
29
cache : ' gradle'
30
30
31
31
- name : Set up keystore
91
91
uses : actions/setup-java@v4
92
92
with :
93
93
distribution : ' temurin'
94
- java-version : ' 17 '
94
+ java-version : ' 21 '
95
95
cache : ' gradle'
96
96
97
97
- name : Run tests
Original file line number Diff line number Diff line change 1
- import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
1
import java.io.ByteArrayOutputStream
3
2
import java.util.Properties
4
3
@@ -164,15 +163,11 @@ android {
164
163
}
165
164
166
165
compileOptions {
167
- sourceCompatibility = JavaVersion .VERSION_17
168
- targetCompatibility = JavaVersion .VERSION_17
166
+ sourceCompatibility = JavaVersion .VERSION_21
167
+ targetCompatibility = JavaVersion .VERSION_21
169
168
isCoreLibraryDesugaringEnabled = true
170
169
}
171
170
172
- kotlinOptions {
173
- jvmTarget = JvmTarget .JVM_17 .target
174
- }
175
-
176
171
testOptions.unitTests.isIncludeAndroidResources = true
177
172
178
173
sourceSets {
@@ -232,16 +227,17 @@ tasks.named {
232
227
RegexOption .IGNORE_CASE
233
228
)
234
229
)
230
+ }.configureEach {
231
+ dependsOn(tasks.named(" openApiGenerate" ))
235
232
}
236
- .all { dependsOn(tasks.named(" openApiGenerate" )) }
237
233
238
234
protobuf {
239
235
protoc {
240
236
artifact = with (libs.protobuf.protoc.get()) { " ${group} :${name} :${version} " }
241
237
}
242
238
243
239
generateProtoTasks {
244
- all().all {
240
+ all().configureEach {
245
241
builtins {
246
242
create(" java" ) { option(" lite" ) }
247
243
}
Original file line number Diff line number Diff line change 1
1
[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"
6
6
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 "
9
9
androidxActivity = " 1.10.1"
10
- androidxComposeAnimation = " 1.8.2 "
10
+ androidxComposeAnimation = " 1.8.3 "
11
11
androidxComposeMaterialAdaptive = " 1.1.0"
12
12
androidxCore = " 1.16.0"
13
13
androidxDatastore = " 1.1.7"
14
14
androidxEspressoCore = " 3.6.1"
15
15
androidxHilt = " 1.2.0"
16
16
androidxLifecycle = " 2.9.1"
17
- androidxNavigation = " 2.9.0 "
17
+ androidxNavigation = " 2.9.1 "
18
18
androidxJunit = " 1.2.1"
19
- androidxWork = " 2.10.1 "
19
+ androidxWork = " 2.10.2 "
20
20
coilCompose = " 2.7.0"
21
21
conscrypt = " 2.5.3"
22
22
desugar = " 2.1.5"
23
23
hilt = " 2.56.2"
24
24
junit = " 4.13.2"
25
25
kotlinxCouroutines = " 1.10.2"
26
- kotlinxSerialization = " 1.8.1 "
26
+ kotlinxSerialization = " 1.9.0 "
27
27
moshi = " 1.15.2"
28
- okhttp = " 4.12 .0"
29
- playServicesBase = " 18.7.0 "
28
+ okhttp = " 5.1 .0"
29
+ playServicesBase = " 18.7.2 "
30
30
protobuf = " 4.31.1"
31
31
retrofit = " 3.0.0"
32
32
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments