Housekeeping: Dependency update 04-2026#126
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the Android/Gradle toolchain and related dependencies, and modernizes the Dokka configuration used across subprojects.
Changes:
- Bump Gradle wrapper and dependency versions (AGP, AndroidX, Koin, Dokka, Kover, etc.).
- Update Gradle wrapper scripts and wrapper properties (timeout/URL validation).
- Replace the previous task-based Dokka configuration with the newer
dokka { ... }DSL.
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| sample/build.gradle | Removes kotlin-android and buildToolsVersion from the sample module build script. |
| dbinspector/build.gradle | Removes kotlin-android / buildToolsVersion and updates default ProGuard file. |
| dbinspector-no-op/build.gradle | Removes kotlin-android / buildToolsVersion and updates default ProGuard file. |
| dokka.gradle | Migrates Dokka configuration to the newer dokka { ... } DSL and updates package suppression rules. |
| gradle/libs.versions.toml | Bumps multiple dependency versions; adds JUnit platform launcher to the test bundle. |
| gradle.properties | Adds android.newDsl=false. |
| gradle/wrapper/gradle-wrapper.properties | Updates Gradle distribution URL and adds wrapper network/validation settings. |
| gradlew / gradlew.bat | Updates generated wrapper scripts (newer Gradle wrapper template). |
| gradle/wrapper/gradle-wrapper.jar | Updates wrapper JAR to match the new wrapper version. |
Comments suppressed due to low confidence (1)
dbinspector/build.gradle:8
- The Kotlin Android plugin was removed, but this module has Kotlin sources and uses the
android { kotlin { compilerOptions { ... } } }configuration. If no Kotlin Android plugin is applied, Kotlin compilation/configuration is likely to break. Re-add the Kotlin Android plugin (e.g.,kotlin-android/org.jetbrains.kotlin.android) or apply it via a project-wide convention plugin.
plugins {
id "com.android.library"
id "kotlin-parcelize"
id "com.google.protobuf"
id "org.jetbrains.kotlinx.kover"
}
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Collaborator
Author
|
We have flaky tests, I will just merge this |
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.



Summary
Just dependency update
Related issue:
Changes
Type
Additional information
Description
Checklist
Additional notes