Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# Run dokka and create tar
- name: Generate documentation
run: |
./gradlew dokkaHtml
./gradlew docs:dokkaGenerate

echo "Creating tar for generated docs"
cd $GITHUB_WORKSPACE/places-compose/build/dokka/html && tar cvf ~/places-compose-docs.tar .
Expand All @@ -65,5 +65,5 @@ jobs:
automerge
title: 'docs: Update docs'
body: |
Updated GitHub pages with latest from `./gradlew dokkaHtml`.
Updated GitHub pages with latest from `./gradlew docs:dokkaGenerate`.
branch: googlemaps-bot/update_gh_pages
2 changes: 1 addition & 1 deletion .github/workflows/lint-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
- name: Upload SARIF for places-compose-demo
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: places-compose-demo/build/reports/lint-results.sarif
sarif_file: places-compose-demo/build/reports/lint-results-debug.sarif
category: places-compose-demo
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ plugins {
alias(libs.plugins.secrets.gradle.plugin) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.ksp)
id("org.jetbrains.dokka") version "2.1.0"
}

allprojects {
Expand Down
32 changes: 16 additions & 16 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
[versions]
accompanistPermissions = "0.37.3"
activityCompose = "1.11.0"
agp = "8.13.0"
activityCompose = "1.12.0"
agp = "8.13.1"
appcompat = "1.7.1"
composeBom = "2025.09.01"
composeBom = "2025.11.01"
coreKtx = "1.17.0"
dokka = "2.0.0"
dokka = "2.1.0"
espressoCore = "3.7.0"
gson = "2.13.2"
hiltVersion = "2.57.2"
jacoco-plugin = "0.2.1"
junit = "4.13.2"
junitVersion = "1.3.0"
kotlin = "2.2.20"
kotlin = "2.2.21"
kotlinReflect = "2.2.20"
kotlinxCoroutinesPlayServices = "1.10.2"
ksp = "2.2.20-2.0.3"
lifecycleRuntimeKtx = "2.9.4"
lifecycleViewmodelCompose = "2.9.4"
mapsCompose = "6.11.0"
mapsUtilsKtx = "5.2.0"
ksp = "2.2.20-2.0.4"
lifecycleRuntimeKtx = "2.10.0"
lifecycleViewmodelCompose = "2.10.0"
mapsCompose = "6.12.2"
mapsUtilsKtx = "5.2.1"
material-icons = "1.7.8"
materialVersion = "1.13.0"
navigationCompose = "2.9.5"
org-jacoco-core = "0.8.13"
places = "5.0.0"
navigationCompose = "2.9.6"
org-jacoco-core = "0.8.14"
places = "5.1.1"
robolectric = "4.16"
secretsGradlePlugin = "2.0.1"
truth = "1.4.5"
uiTestAndroid = "1.9.2"
uiToolingVersion = "1.9.2"
gradleMavenPublishPlugin = "0.34.0"
uiTestAndroid = "1.9.5"
uiToolingVersion = "1.9.5"
gradleMavenPublishPlugin = "0.35.0"

[libraries]
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanistPermissions" }
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions places-compose-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

android {
lint {
sarifOutput = file("$buildDir/reports/lint-results.sarif")
sarifOutput = file("${layout.buildDirectory}/reports/lint-results.sarif")
}

namespace = "com.google.android.libraries.places.compose.demo"
Expand Down Expand Up @@ -50,8 +50,10 @@ android {
}
}

kotlinOptions {
jvmTarget = "17"
kotlin {
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
}
}

buildFeatures {
Expand Down
Loading