Fix main activity positioning in edge-to-edge mode #139
Workflow file for this run
This file contains hidden or 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: Build APKs | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest # Linux machine is required because of Buildroot dependency | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Assemble release APKs | |
| uses: gradle/gradle-build-action@v2 | |
| with: | |
| arguments: assembleRelease -Dorg.gradle.daemon.performance.enable-monitoring=false | |
| build-root-directory: app | |
| - name: Upload APKs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: apks | |
| path: app/build/outputs/apk/release/*.apk |