fix(deps): update other non-major dependencies#262
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates dependency versions in gradle/libs.versions.toml (AGP and billing) and upgrades the Gradle wrapper in gradle-wrapper.properties. A review comment points out that the Gradle distribution URL is incorrect because Gradle does not use the .0 suffix for major/minor releases, which will result in a 404 error when downloading gradle-9.6.0-bin.zip instead of gradle-9.6-bin.zip.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| distributionSha256Sum=6e3106016ed5b19bfdef316441777a132cda19e167ad90015e053db423fb5dd6 | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-rc-3-bin.zip | ||
| distributionSha256Sum=bbaeb2fef8710818cf0e261201dab964c572f92b942812df0c3620d62a529a01 | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.0-bin.zip |
There was a problem hiding this comment.
Gradle does not use the .0 suffix for initial major/minor releases (e.g., 9.6.0). The official release is named gradle-9.6-bin.zip. Using gradle-9.6.0-bin.zip will result in a 404 HTTP error when Gradle attempts to download the wrapper. Please update the URL to use gradle-9.6-bin.zip.
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6-bin.zip
No description provided.