Skip to content

Commit 07abf42

Browse files
authored
Merge branch 'main' into feat/expose-remember-compose-bitmap-descriptor
2 parents fac2f44 + 65807dd commit 07abf42

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/triage-issue.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,15 @@ jobs:
4545
run: |
4646
# Convert comma-separated labels to gh command arguments
4747
IFS=',' read -ra ADDR <<< "${{ steps.run_script.outputs.labels }}"
48+
priority_added=false
4849
for i in "${ADDR[@]}"; do
4950
# Trim whitespace
5051
label=$(echo "$i" | xargs)
51-
# Only add priority labels as requested
52-
if [[ "$label" == priority:* ]]; then
52+
# Only add the first priority label found
53+
if [[ "$label" == priority:* ]] && [ "$priority_added" = false ]; then
5354
gh issue edit "$ISSUE_NUMBER" --add-label "$label"
55+
priority_added=true
5456
fi
55-
done
57+
done
58+
# Remove 'triage me' label
59+
gh issue edit "$ISSUE_NUMBER" --remove-label "triage me" || true

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ androidTargetSdk = "36"
1010
agp = "9.0.0"
1111
dokka = "2.1.0"
1212
gradleMavenPublishPlugin = "0.36.0"
13-
kotlin = "2.3.0"
13+
kotlin = "2.3.10"
1414
kotlinxCoroutines = "1.10.2"
1515

1616
# Android
17-
activitycompose = "1.12.2"
18-
androidx-core = "1.17.0"
17+
activitycompose = "1.13.0"
18+
androidx-core = "1.18.0"
1919
androidx-startup = "1.2.0"
20-
compose-bom = "2026.01.00"
20+
compose-bom = "2026.03.00"
2121
constraintlayout = "2.2.1"
2222

2323
# Material
@@ -27,7 +27,7 @@ materialIconsExtendedAndroid = "1.7.8"
2727

2828
# Google Maps Platform
2929
mapsecrets = "2.0.1"
30-
mapsktx = "6.0.0"
30+
mapsktx = "6.0.1"
3131

3232
# Testing
3333
androidCore = "1.7.0"

maps-compose/src/main/java/com/google/maps/android/compose/utils/attribution/AttributionIdInitializer.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package com.google.maps.android.compose.utils.attribution
1818

1919
import android.content.Context
20+
import androidx.annotation.Keep
2021
import androidx.startup.Initializer
2122
import com.google.android.gms.maps.MapsApiSettings
2223
import com.google.maps.android.compose.utils.meta.AttributionId
@@ -26,6 +27,7 @@ import com.google.maps.android.compose.utils.meta.AttributionId
2627
* and samples are helpful to developers, such as usage of this library.
2728
* To opt out of sending the usage attribution ID, please remove this initializer from your manifest.
2829
*/
30+
@Keep
2931
internal class AttributionIdInitializer : Initializer<Unit> {
3032
override fun create(context: Context) {
3133
MapsApiSettings.addInternalUsageAttributionId(

0 commit comments

Comments
 (0)