mirror of
https://codeberg.org/anoncontributorxmr/mysu.git
synced 2025-07-15 13:26:16 +00:00
613 B
613 B
Internal document about maintaining Monfluo
Releasing
- Bump
versionCode
&versionName
inbuild.gradle
- Build APKs:
./gradlew clean assembleRelease
- The APKs will be in
app/build/outputs/apk/beta/release
directory
- The APKs will be in
- Sign the APKs
for f in ./*.apk; do
apksigner sign --ks ~/acx.jks "$f"
done
- Generate SHA256 hashes:
sha256sum *.apk >> sha256sum.txt
- Sign the hashes:
gpg --clearsign sha256sum.txt
- Test the APKs
- Create a new release on Codeberg
- Copy APKs to fdroid repo:
cp *.apk ~/fdroid/repo/
- Deploy new APKs to fdroid:
cd ~/fdroid && fdroid-deploy-monfluo