Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/pr_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ jobs:
distribution: 'temurin'
java-version: '21'

- name: Setup Android SDK
uses: android-actions/setup-android@v4
with:
packages: 'build-tools;37.0.0'

# Unified Gradle caching — reads the cache written by the formatting job
# on PRs; pushes an updated cache on main.
- name: Setup Gradle
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Android SDK
uses: android-actions/setup-android@v4
with:
packages: 'build-tools;37.0.0'
- name: Decode Keystore
id: decode_keystore
uses: timheuer/base64-to-file@v2
Expand All @@ -36,7 +40,7 @@ jobs:
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
- name: Verify Signature
run: $ANDROID_SDK_ROOT/build-tools/36.0.0/apksigner verify --print-certs app/build/outputs/apk/release/RecurringExpenseTracker_${{ steps.get_version.outputs.version-without-v }}.apk
run: $ANDROID_SDK_ROOT/build-tools/37.0.0/apksigner verify --print-certs app/build/outputs/apk/release/RecurringExpenseTracker_${{ steps.get_version.outputs.version-without-v }}.apk
- name: Upload APK
uses: actions/upload-artifact@v7
with:
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
aboutLibraries = '14.2.0'
accompanist-permissions = "0.37.3"
agp = "9.2.1"
android-compileSdk = "36"
android-compileSdk = "37"
android-minSdk = "26"
android-targetSdk = "36"
android-targetSdk = "37"
androidx-activityCompose = "1.13.0"
androidx-appcompat = "1.7.1"
androidx-core = "1.18.0"
Expand Down