Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the project’s build/dependency management and repo automation configuration, aiming to modernize Gradle/Android tooling and introduce maintenance automation.
Changes:
- Migrates Gradle plugin/dependency declarations to version catalogs (including a separate “fixed” catalog for intentionally pinned deps).
- Updates Gradle wrapper scripts/properties and adjusts module build configuration (compileSdk, Java toolchain).
- Adds repo automation/config (CODEOWNERS, Dependabot) and updates GitHub Actions workflows.
Reviewed changes
Copilot reviewed 14 out of 16 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
build.gradle.kts |
Switches to plugin aliases from the libs version catalog. |
settings.gradle.kts |
Adds Foojay toolchain resolver plugin and defines the fixed version catalog. |
gradle/libs.versions.toml |
Introduces the main version catalog for plugins/libraries. |
gradle/fixed.versions.toml |
Adds a “fixed” catalog for dependencies intentionally kept at older versions. |
test-runtime-android/build.gradle.kts |
Uses catalog aliases, bumps compileSdk, and configures Java toolchain. |
observer-interface/build.gradle.kts |
Uses catalog aliases, bumps compileSdk, and configures Java toolchain. |
gradle/wrapper/gradle-wrapper.properties |
Updates the Gradle distribution URL. |
gradle/wrapper/gradle-wrapper.jar |
Updates the wrapper JAR to match wrapper changes. |
gradlew |
Updates POSIX wrapper script (notably -jar usage and template changes). |
gradlew.bat |
Updates Windows wrapper script (stderr output and -jar usage). |
.github/workflows/build.yml |
Updates CI actions versions and switches CI JDK version. |
.github/workflows/deploy.yml |
Updates deploy workflow actions versions and switches JDK version. |
.github/dependabot.yml |
Adds Dependabot configuration for GitHub Actions + Gradle. |
.github/CODEOWNERS |
Adds CODEOWNERS ownership mapping. |
.tool-versions |
Removes asdf tool version pinning. |
mise.toml |
Adds mise tool version pinning for Java. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some spring cleaning. Adds
CODEOWNERS, dependabot config, Gradle version catalogues, updates to the latest Gradle/JDK/AGP etc.