fix: Enable desugaring to add missing NIO API in old device (#79) #21
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: Build APP | |
on: | |
push: | |
branches: [ "master", "old-android" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: sparkfabrik/android-build-action@v1.5.0 | |
with: | |
project-path: . | |
output-path: app-debug.apk | |
fastlane-env: "debug" | |
- uses: actions/upload-artifact@v3 | |
if: github.event_name == 'pull_request' | |
name: Upload app APK | |
with: | |
name: App bundle | |
path: app-debug.apk | |
- uses: r0adkll/sign-android-release@v1 | |
if: github.event_name != 'pull_request' | |
name: Sign app APK | |
id: sign_app | |
with: | |
releaseDirectory: . | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
- uses: actions/upload-artifact@v3 | |
if: github.event_name != 'pull_request' | |
name: Upload signed app APK | |
with: | |
name: Signed app bundle | |
path: ${{steps.sign_app.outputs.signedReleaseFile}} |