Skip to content

Commit a15cb45

Browse files
authored
chore: updated versions (#2135)
* chore: updated versions * chore: updated snippets * chore: updated tutorials java * chore: updated tutorials java * chore: permission * chore: permission * chore: added material
1 parent 0595432 commit a15cb45

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+742
-492
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: Build and check
8484
run: |
8585
cd snippets
86-
./gradlew assembleDebug lintGmsDebug
86+
./gradlew assembleDebug lintDebug
8787
8888
build-tutorials:
8989
runs-on: ubuntu-latest

ApiDemos/project/common-ui/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13
/*
24
* Copyright 2025 Google LLC
35
*
@@ -43,8 +45,11 @@ android {
4345
sourceCompatibility = JavaVersion.VERSION_11
4446
targetCompatibility = JavaVersion.VERSION_11
4547
}
46-
kotlinOptions {
47-
jvmTarget = "17"
48+
kotlin {
49+
compilerOptions {
50+
jvmTarget.set(JvmTarget.JVM_17)
51+
javaParameters.set(true)
52+
}
4853
}
4954
}
5055

ApiDemos/project/gradle/libs.versions.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
activity = "1.10.1"
33
activityKtx = "1.10.1"
44
androidxJunit = "1.2.1"
5-
appcompat = "1.7.0"
5+
appcompat = "1.7.1"
66
cardview = "1.0.0"
77
easypermissions = "3.0.0"
88
espresso = "3.6.1"
9-
gradle = "8.8.0"
9+
gradle = "8.10.1"
1010
junit = "4.13.2"
11-
kotlin = "2.1.10"
12-
lifecycle = "2.8.7"
13-
mapsKtx = "5.1.1"
11+
kotlin = "2.2.0"
12+
lifecycle = "2.9.1"
13+
mapsKtx = "5.2.0"
1414
material = "1.12.0"
1515
multidex = "2.0.1"
16-
playServicesMaps = "19.1.0"
16+
playServicesMaps = "19.2.0"
1717
recyclerview = "1.4.0"
1818
secretsGradlePlugin = "2.0.1"
1919
volley = "1.2.1"
20-
coreKtx = "1.15.0"
20+
coreKtx = "1.16.0"
2121

2222
[libraries]
2323
activity = { module = "androidx.activity:activity", version.ref = "activity" }
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#Wed Jul 10 22:13:55 CEST 2024
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)