Update Android SDK versions and rebuild with new deps #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: android | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'build-android/**' | |
- 'data-*/**' | |
- 'packaging/**' | |
- 'CMakeLists.txt' | |
- '.github/workflows/android.yml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'build-android/**' | |
- 'data-*/**' | |
- 'packaging/**' | |
- 'CMakeLists.txt' | |
- '.github/workflows/android.yml' | |
jobs: | |
android: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build with gradle | |
run: | | |
cd build-android | |
./gradlew assemblerelease | |
- name: Save apk artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: principia-release-unsigned.apk | |
path: build-android/principia/build/outputs/apk/release/principia-release-unsigned.apk |