Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/apply_spotless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,30 @@

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
apply-spotless:

Check warning on line 26 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

apply_spotless.yml:26: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
timeout-minutes: 30
if: github.repository == 'android/snippets'

steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 33 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 33 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

apply_spotless.yml:33: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
token: ${{ secrets.PAT || github.token }}
fetch-depth: 0

- name: set up Java 17
uses: actions/setup-java@v5

Check failure on line 39 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 39 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

apply_spotless.yml:39: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: '17'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6

Check failure on line 45 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 45 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

apply_spotless.yml:45: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Run spotlessApply
run: ./gradlew spotlessApply --stacktrace

- name: Auto-commit if spotlessApply has changes
uses: stefanzweifel/git-auto-commit-action@v7

Check failure on line 51 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 51 in .github/workflows/apply_spotless.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

apply_spotless.yml:51: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_ios:

Check warning on line 33 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build-ios.yml:33: overly broad permissions: default permissions used due to no permissions: block
name: Build iOS app
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1

Check failure on line 37 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 37 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build-ios.yml:37: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
xcode-version: latest-stable

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

Check failure on line 42 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 42 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build-ios.yml:42: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Build iOS app
uses: mxcl/xcodebuild@v3

Check failure on line 45 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 45 in .github/workflows/build-ios.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build-ios.yml:45: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
xcode: ^16
scheme: iosApp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@
cancel-in-progress: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:

Check warning on line 27 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yml:27: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

Check failure on line 32 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 32 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:32: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
token: ${{ secrets.PAT || github.token }}
- name: set up Java 25
uses: actions/setup-java@v5

Check failure on line 36 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 36 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:36: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
distribution: 'zulu'
java-version: '25'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6

Check failure on line 41 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yml:41: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Build All
run: ./gradlew build --stacktrace
- name: Build Watch Face Push validation snippets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
workflow_dispatch:

jobs:
build:

Check warning on line 7 in .github/workflows/update_deps.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

update_deps.yml:7: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: set up JDK 17
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion datastore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ dependencies {
// [START android_datastore_proto_task]
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:4.34.0"
artifact = "com.google.protobuf:protoc:4.35.1"
}
generateProtoTasks {
all().forEach { task ->
Expand Down
66 changes: 33 additions & 33 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
accompanist = "0.36.0"
activityKtx = "1.13.0"
android-googleid = "1.2.0"
androidGradlePlugin = "9.2.1"
androidGradlePlugin = "9.3.1"
androidx-activity-compose = "1.13.0"
androidx-appcompat = "1.7.1"
androidx-appfunctions = "1.0.0-alpha10"
androidx-cameraX = "1.6.1"
androidx-car = "1.7.0"
androidx-compose-bom = "2026.06.00"
androidx-compose-bom = "2026.06.01"
androidx-compose-ui-test = "1.7.0-alpha08"
androidx-compose-ui-test-junit4-accessibility = "1.11.3"
androidx-compose-ui-test-junit4-accessibility = "1.11.4"
androidx-concurrent = "1.3.0"
androidx-constraintlayout = "2.2.1"
androidx-constraintlayout-compose = "1.1.1"
androidx-constraintlayout = "2.2.2"
androidx-constraintlayout-compose = "1.1.2"
androidx-coordinator-layout = "1.3.0"
androidx-core-telecom = "1.1.0-alpha06"
androidx-corektx = "1.19.0"
androidx-corepip = "1.0.0-alpha02"
androidx-credentials = "1.7.0-alpha02"
androidx-credentials-play-services-auth = "1.7.0-alpha02"
androidx-corepip = "1.0.0-alpha03"
androidx-credentials = "1.7.0-alpha03"
androidx-credentials-play-services-auth = "1.7.0-alpha03"
androidx-emoji2-views = "1.6.0"
androidx-fragment = "1.8.9"
androidx-glance-appwidget = "1.3.0-alpha01"
androidx-glance-appwidget = "1.3.0-alpha02"
androidx-lifecycle-compose = "2.11.0"
androidx-lifecycle-runtime-compose = "2.11.0"
androidx-lifecycle-viewmodel-navigation3 = "2.11.0"
androidx-navigation = "2.9.8"
androidx-navigation3 = "1.1.3"
androidx-navigation3 = "1.1.5"
androidx-paging = "3.5.0"
androidx-startup-runtime = "1.2.0"
androidx-test = "1.7.0"
Expand All @@ -38,14 +38,14 @@ androidx-window = "1.6.0-alpha05"
androidx-window-core = "1.5.1"
androidx-window-java = "1.5.1"
androidx-work-runtime = "2.11.2"
androidxHiltNavigationCompose = "1.3.0"
androidxHiltNavigationCompose = "1.4.0"
appcompat = "1.7.1"
camera-camera2 = "1.6.1"
coil = "2.7.0"
# @keep
compileSdk = "37"
compose-latest = "1.11.3"
compose-remote = "1.0.0-alpha13"
compose-latest = "1.11.4"
compose-remote = "1.0.0-alpha16"
composeUiTooling = "1.6.2"
coreSplashscreen = "1.2.0"
coroutines = "1.11.0"
Expand All @@ -57,26 +57,26 @@ datastorePreferencesRxjava3 = "1.2.1"
engageCore = "1.6.0"
firebase-ai = "17.15.0"
firebase-bom = "34.17.0"
firebase-ondevice = "16.0.0-beta03"
glance-wear = "1.0.0-alpha12"
glide = "1.0.0-beta09"
firebase-ondevice = "16.0.0-beta04"
glance-wear = "1.0.0-alpha15"
glide = "1.0.0-beta10"
google-ar-core = "1.54.0"
google-maps = "20.0.0"
gradle-versions = "0.54.0"
gradle-versions = "0.59.0"
guava = "33.6.0-jre"
guava-android = "33.6.0-jre"
health-connect = "1.2.0-alpha04"
hilt = "2.59.2"
hilt = "2.60.1"
horologist = "0.8.3-alpha"
junit = "4.13.2"
kotlin = "2.4.0"
kotlin = "2.4.10"
kotlinCoroutinesOkhttp = "1.0"
kotlinxCoroutinesGuava = "1.11.0"
kotlinxSerialization = "1.11.0"
ksp = "2.3.9"
ksp = "2.3.11"
ktlint = "1.5.0"
lifecycleService = "2.11.0"
maps-compose = "8.3.0"
maps-compose = "8.4.0"
material = "1.14.0"
material3-adaptive = "1.2.0"
material3-adaptive-navigation-suite = "1.4.0"
Expand All @@ -87,32 +87,32 @@ media3Ui = "1.10.1"
# @keep
minSdk = "36"
mlkit-face-detection = "16.1.7"
mockitoKotlin = "5.3.1"
mockitoKotlin = "6.3.0"
okHttp = "5.4.0"
playServicesFitness = "21.3.0"
playServicesWearable = "20.0.1"
playbilling = "9.0.0"
playbilling = "9.1.0"
protobuf = "4.35.1"
protoc = "0.10.0"
protolayout = "1.4.0"
protolayout = "1.4.2"
reactive-streams = "1.0.4"
recyclerview = "1.4.0"
registryDigitalCredentials = "1.0.0-alpha04"
remote-material3 = "1.0.0-alpha06"
registryDigitalCredentials = "1.0.0-alpha05"
remote-material3 = "1.0.0-alpha08"
room = "2.8.4"
room3 = "3.0.0-rc01"
room3 = "3.0.1"
robolectric = "4.16.1"
roborazzi = "1.64.0"
sqlite = "2.7.0-rc01"
spotless = "8.7.0"
roborazzi = "1.70.0"
sqlite = "2.7.0"
spotless = "8.9.0"
targetSdk = "37"
tiles = "1.6.0"
tiles = "1.6.2"
tracing = "1.3.0"
truth = "1.4.5"
turbine = "1.2.1"
tvComposeMaterial3 = "1.1.0"
validatorPush = "1.0.0-alpha09"
version-catalog-update = "1.1.0"
version-catalog-update = "1.1.1"
watchfaceComplicationsDataSourceKtx = "1.3.0"
wear = "1.4.0"
wearComposeFoundation = "1.6.2"
Expand All @@ -121,7 +121,7 @@ wearComposeMaterial3 = "1.6.2"
wearComposeNavigation3 = "1.6.2"
wearInput = "1.2.0"
wearOngoing = "1.1.0"
wearPhoneInteractions = "1.1.0"
wearPhoneInteractions = "1.1.1"
wearRemoteInteractions = "1.2.0"
wearToolingPreview = "1.0.0"
webkit = "1.16.0"
Expand Down
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-9.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion xr/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
androidx-xr-arcore = "1.0.0-beta01"
androidx-xr-arcore-play-services = "1.0.0-beta01"
androidx-xr-compose = "1.0.0-alpha16"
androidx-xr-glimmer = "1.0.0-alpha15"
androidx-xr-glimmer = "1.0.0-alpha16"
androidx-xr-projected = "1.0.0-alpha10"
androidx-xr-scenecore = "1.0.0-beta01"

Expand Down
Loading