File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
maps-compose/src/main/java/com/google/maps/android/compose/utils/attribution Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ androidTargetSdk = "36"
1010agp = " 9.0.0"
1111dokka = " 2.1.0"
1212gradleMavenPublishPlugin = " 0.36.0"
13- kotlin = " 2.3.0 "
13+ kotlin = " 2.3.10 "
1414kotlinxCoroutines = " 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"
1919androidx-startup = " 1.2.0"
20- compose-bom = " 2026.01 .00"
20+ compose-bom = " 2026.03 .00"
2121constraintlayout = " 2.2.1"
2222
2323# Material
@@ -27,7 +27,7 @@ materialIconsExtendedAndroid = "1.7.8"
2727
2828# Google Maps Platform
2929mapsecrets = " 2.0.1"
30- mapsktx = " 6.0.0 "
30+ mapsktx = " 6.0.1 "
3131
3232# Testing
3333androidCore = " 1.7.0"
Original file line number Diff line number Diff line change 1717package com.google.maps.android.compose.utils.attribution
1818
1919import android.content.Context
20+ import androidx.annotation.Keep
2021import androidx.startup.Initializer
2122import com.google.android.gms.maps.MapsApiSettings
2223import 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
2931internal class AttributionIdInitializer : Initializer <Unit > {
3032 override fun create (context : Context ) {
3133 MapsApiSettings .addInternalUsageAttributionId(
You can’t perform that action at this time.
0 commit comments