- Checking bugs and technical debt
- Updating application version
- Updating the changelog
- Building release apk
- Distributing release
Android development tool provide linter to check common errors.
Use ./gradlew :app:lint
to run the linter and produce report.
It will generate an HTML (human readable) file at app/build/reports/lint-results.html
.
So before making a release, ensure no new warning has been introduced.
The AdAway application source code is monitored by SonarCloud.
The current version of the source code is analysed to find bugs, code smells and compute technical debt.
The overall score may be not perfect, each new release should not increase it.
So before making a release, ensure that no new bug or debt has been introduced.
Each version has each own version number.
It follows the Semantic Versioning principle (once the first 4.x.y stable release is published).
It must be declared a 3 different locations:
- The version name
android.defaultConfig.versionName
insrc/app/build.gradle
: '4.1.2', '5.12.3' - The version code
android.defaultConfig.versionCode
insrc/app/build.gradle
: 41020, 51203 - The version name for SonarCloud
sonarqube.properties.property.sonar.projectVersion
insrc/build.gradle
: same as version name
The AdAway project provides a global changelog.
Before releasing any new version, be sure to update the changelog to let users know what is inside each new version.
The release apk must be built with release flavor (not debug). Check contributing guide for building instructions.
The apk name follows the following format: AdAway-<version_name>-<yyyymmdd>.apk
.
Example: AdAway-6.1.2-20220817.apk for the version 6.1.2 built the 08/17/22.
Before sharing the any release, remember to test it.
Release variant apk does not behave like debug variant.
Same goes for real device versus emulator.
Final test should be done with release apk variant on real device.
Once tested, releases are posted on XDA development thread using the following template:
Hi all,
<welcoming message about the new version>
[U][SIZE="4"]Changelog:[/SIZE][/U]
[LIST]
[*] Item 1
[*] Item 2
[*] ...
[*] Item n
[/LIST]
[U][SIZE="4"]Thanks:[/SIZE][/U]
Special thanks to <contributors> for theirs contributions and <bug reporters> for theirs helpful bug reports.
[U][SIZE="4"]Download:[/SIZE][/U]
[URL="https://app.adaway.org/adaway.apk"]AdAway <application version>[/URL]
The beta releases are only announced in the XDA development thread.
The stable releases are distributed through GitHub releases and F-Droid store and are posted of the first post of XDA development thread.
Once ready, create and push a tag on GitHub repository using vX.Y.Z
format (or vX.Y.Zb
for pre-releases).
To publish the application in GitHub:
- Create a new version based on this tag,
- Copy the changelog part related to the version as description of the release,
- Upload apk binary to the release.
Pushing a tag will publish the application to F-Droid store.
It might takes some days to update but if it does not, build logs are available at the following address: https://monitor.f-droid.org/builds/log/org.adaway/<versioncode>
.