mirror of
https://github.com/pachli/pachli-android.git
synced 2024-12-11 08:36:40 +01:00
dda9dde1b9
Users can inadvertently get stuck on older versions of the app; e.g., by installing from one F-Droid repository that stops hosting the app at some later time. Analytics from the Play Store also shows a long tail of users who are, for some reason, on an older version. On resuming `MainActivity`, and approximately once per day, check and see if a newer version of Pachli is available, and prompt the user to update by going to the relevant install location (Google Play, F-Droid, or GitHub). The dialog prompt allows them to ignore this specific version, or disable all future update notifications. This is also exposed through the preferences, so the user can adjust it there too. A different update check method is used for each installation location. - F-Droid: Use the F-Droid API to query for the newest released version - GitHub: Use the GitHub API to query for the newest release, and check the APK filename attached to that release - Google Play: Use the Play in-app-updates library (https://developer.android.com/guide/playcore/in-app-updates) to query for the newest released version These are kept in different build flavours (source sets), so that e.g., the build for the F-Droid store can only query the F-Droid API, the UI strings are specific to F-Droid, etc. This also ensures that the update service libraries are specific to that build and do not "cross-contaminate". Note that this *does not* update the app, it takes the user to either the relevant store page (F-Droid, Play) or GitHub release page. The user must still start the update from that page. CI configuration is updated to build the different flavours.
89 lines
2.8 KiB
YAML
89 lines
2.8 KiB
YAML
name: Upload orangeRelease to Google Play
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
|
|
- name: Gradle Wrapper Validation
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Gradle Build Action
|
|
uses: gradle/gradle-build-action@v2
|
|
with:
|
|
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
- name: Test
|
|
run: ./gradlew app:testOrangeGoogleReleaseUnitTest --stacktrace
|
|
|
|
- name: Build APK
|
|
run: ./gradlew assembleOrangeGoogleRelease --stacktrace
|
|
|
|
- name: Build AAB
|
|
run: ./gradlew :app:bundleOrangeGoogleRelease --stacktrace
|
|
|
|
- uses: r0adkll/sign-android-release@v1.0.4
|
|
name: Sign app APK
|
|
id: sign_app_apk
|
|
with:
|
|
releaseDirectory: app/build/outputs/apk/orangeGoogle/release
|
|
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
|
|
alias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
|
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
|
|
keyPassword: ${{ secrets.KEY_PASSWORD }}
|
|
env:
|
|
BUILD_TOOLS_VERSION: "34.0.0"
|
|
|
|
- uses: r0adkll/sign-android-release@v1.0.4
|
|
name: Sign app AAB
|
|
id: sign_app_aab
|
|
with:
|
|
releaseDirectory: app/build/outputs/bundle/orangeGoogleRelease
|
|
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
|
|
alias: ${{ secrets.SIGNING_KEY_ALIAS }}
|
|
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
|
|
keyPassword: ${{ secrets.KEY_PASSWORD }}
|
|
env:
|
|
BUILD_TOOLS_VERSION: "34.0.0"
|
|
|
|
- name: Upload APK Release Asset
|
|
id: upload-release-asset-apk
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: app-release.apk
|
|
path: ${{steps.sign_app_apk.outputs.signedReleaseFile}}
|
|
|
|
- name: Generate whatsnew
|
|
id: generate-whatsnew
|
|
run: |
|
|
mkdir -p googleplay/whatsnew
|
|
git log -1 --pretty=format:"%s" > googleplay/whatsnew/whatsnew-en-US
|
|
|
|
- name: Upload AAB to Google Play
|
|
id: upload-release-asset-aab
|
|
uses: r0adkll/upload-google-play@v1.1.2
|
|
with:
|
|
serviceAccountJsonPlainText: ${{ secrets.PLAY_SERVICE_ACCOUNT_KEY }}
|
|
packageName: app.pachli.current
|
|
releaseFiles: ${{steps.sign_app_aab.outputs.signedReleaseFile}}
|
|
track: production
|
|
whatsNewDirectory: googleplay/whatsnew
|
|
status: completed
|
|
mappingFile: app/build/outputs/mapping/orangeGoogleRelease/mapping.txt
|