Skip to content

Commit b9da8b3

Browse files
authored
docs: updated Dokka version (#60)
* docs: updated Dokka version * docs: updated Lint path
1 parent 3ec815e commit b9da8b3

8 files changed

Lines changed: 27 additions & 24 deletions

File tree

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# Run dokka and create tar
4444
- name: Generate documentation
4545
run: |
46-
./gradlew dokkaHtml
46+
./gradlew docs:dokkaGenerate
4747
4848
echo "Creating tar for generated docs"
4949
cd $GITHUB_WORKSPACE/places-compose/build/dokka/html && tar cvf ~/places-compose-docs.tar .
@@ -65,5 +65,5 @@ jobs:
6565
automerge
6666
title: 'docs: Update docs'
6767
body: |
68-
Updated GitHub pages with latest from `./gradlew dokkaHtml`.
68+
Updated GitHub pages with latest from `./gradlew docs:dokkaGenerate`.
6969
branch: googlemaps-bot/update_gh_pages

.github/workflows/lint-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ jobs:
4545
- name: Upload SARIF for places-compose-demo
4646
uses: github/codeql-action/upload-sarif@v3
4747
with:
48-
sarif_file: places-compose-demo/build/reports/lint-results.sarif
48+
sarif_file: places-compose-demo/build/reports/lint-results-debug.sarif
4949
category: places-compose-demo

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ plugins {
1212
alias(libs.plugins.secrets.gradle.plugin) apply false
1313
alias(libs.plugins.compose.compiler) apply false
1414
alias(libs.plugins.ksp)
15+
id("org.jetbrains.dokka") version "2.1.0"
1516
}
1617

1718
allprojects {

gradle/libs.versions.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
[versions]
22
accompanistPermissions = "0.37.3"
3-
activityCompose = "1.11.0"
4-
agp = "8.13.0"
3+
activityCompose = "1.12.0"
4+
agp = "8.13.1"
55
appcompat = "1.7.1"
6-
composeBom = "2025.09.01"
6+
composeBom = "2025.11.01"
77
coreKtx = "1.17.0"
8-
dokka = "2.0.0"
8+
dokka = "2.1.0"
99
espressoCore = "3.7.0"
1010
gson = "2.13.2"
1111
hiltVersion = "2.57.2"
1212
jacoco-plugin = "0.2.1"
1313
junit = "4.13.2"
1414
junitVersion = "1.3.0"
15-
kotlin = "2.2.20"
15+
kotlin = "2.2.21"
1616
kotlinReflect = "2.2.20"
1717
kotlinxCoroutinesPlayServices = "1.10.2"
18-
ksp = "2.2.20-2.0.3"
19-
lifecycleRuntimeKtx = "2.9.4"
20-
lifecycleViewmodelCompose = "2.9.4"
21-
mapsCompose = "6.11.0"
22-
mapsUtilsKtx = "5.2.0"
18+
ksp = "2.2.20-2.0.4"
19+
lifecycleRuntimeKtx = "2.10.0"
20+
lifecycleViewmodelCompose = "2.10.0"
21+
mapsCompose = "6.12.2"
22+
mapsUtilsKtx = "5.2.1"
2323
material-icons = "1.7.8"
2424
materialVersion = "1.13.0"
25-
navigationCompose = "2.9.5"
26-
org-jacoco-core = "0.8.13"
27-
places = "5.0.0"
25+
navigationCompose = "2.9.6"
26+
org-jacoco-core = "0.8.14"
27+
places = "5.1.1"
2828
robolectric = "4.16"
2929
secretsGradlePlugin = "2.0.1"
3030
truth = "1.4.5"
31-
uiTestAndroid = "1.9.2"
32-
uiToolingVersion = "1.9.2"
33-
gradleMavenPublishPlugin = "0.34.0"
31+
uiTestAndroid = "1.9.5"
32+
uiToolingVersion = "1.9.5"
33+
gradleMavenPublishPlugin = "0.35.0"
3434

3535
[libraries]
3636
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanistPermissions" }

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

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.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

places-compose-demo/build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99

1010
android {
1111
lint {
12-
sarifOutput = file("$buildDir/reports/lint-results.sarif")
12+
sarifOutput = file("${layout.buildDirectory}/reports/lint-results.sarif")
1313
}
1414

1515
namespace = "com.google.android.libraries.places.compose.demo"
@@ -50,8 +50,10 @@ android {
5050
}
5151
}
5252

53-
kotlinOptions {
54-
jvmTarget = "17"
53+
kotlin {
54+
compilerOptions {
55+
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
56+
}
5557
}
5658

5759
buildFeatures {

0 commit comments

Comments
 (0)