blob: 126c380b47d2ab65b71a57c42513abd12d660d9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Update Gradle Wrapper
1. Go to the [releases page](https://gradle.org/releases/) and read up on the release notes that you want to update to.
2. Go to the [release checksums page](https://gradle.org/release-checksums/) and copy the `Binary-only (-bin) ZIP Checksum` for the version you want to update to.
3. Run the following command and replace the VERSION & SHA256 with the correct version and sha256 that you've retrieved from step 1.
```
./gradlew wrapper --gradle-version=VERSION --gradle-distribution-sha256-sum SHA256 && ./gradlew wrapper
```
4. Update the gradle version to the new version in `.github/workflows/android-reproducible-builds.yml`. The steps required to update are:
- build-fdroid-app-server/Install gradle
- build-fdroid-app-server/Build app
|