You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The local Gradle wrapper related files within the project do not match the expected files for the Gradle version specified within the gradle-wrapper.properties file
This might be as the expected ./gradlew wrapper was not previously used to upgrade the wrapper and the file was edited manually
How to Reproduce
Run gradlew wrapper --gradle-version=8.2 --distribution-type=bin locally and observe there's a difference in a number of wrapper related files
$ ./gradlew wrapper --gradle-version=8.2 --distribution-type=bin
# [Truncated]
BUILD SUCCESSFUL in 5s
4 actionable tasks: 2 executed, 2 up-to-date
$ git status --porcelain
M gradle/wrapper/gradle-wrapper.jar
M gradle/wrapper/gradle-wrapper.properties
M gradlew
M gradlew.bat
Running the above within the project will ensure the relevant Gradle wrapper files for Gradle 8.2 are added.
Additionally, by providing the expected SHA-256 checksum for the Gradle 8.2 distribution (source) in this way, a distributionSha256Sum property is created within gradle-wrapper.properties which provides additional protection against Gradle supply chain attacks by ensuring future downloads via the distributionUrl are matched against the checksum and failing the builds otherwise.
Thank you for opening an Issue in our Repository.
The issue has been forwarded to the team and we'll follow up as soon as we have time to investigate.
As stated in our Contribution Guidelines, requests for feedback should be addressed via the Feedback section in the Android app.
Describe the bug
The local Gradle wrapper related files within the project do not match the expected files for the Gradle version specified within the
gradle-wrapper.properties
filedistributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
This might be as the expected
./gradlew wrapper
was not previously used to upgrade the wrapper and the file was edited manuallyHow to Reproduce
Run
gradlew wrapper --gradle-version=8.2 --distribution-type=bin
locally and observe there's a difference in a number of wrapper related filesExpected behavior
Running the above within the project will ensure the relevant Gradle wrapper files for Gradle 8.2 are added.
Additionally, by providing the expected SHA-256 checksum for the Gradle 8.2 distribution (source) in this way, a
distributionSha256Sum
property is created withingradle-wrapper.properties
which provides additional protection against Gradle supply chain attacks by ensuring future downloads via thedistributionUrl
are matched against the checksum and failing the builds otherwise.See this post and relevant docs for more information.
Environment
- All local/remote development environments
The text was updated successfully, but these errors were encountered: