Fix keyboard fails to spawn in Android 16 (API 36) #67
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 app-debug.apk | |
| on: | |
| push: | |
| branches: [master] | |
| paths-ignore: | |
| - "LICENSE" | |
| - "*.md" | |
| - "fastlane/**" | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - run: ./gradlew clean && ./gradlew assembleDebug | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: app-debug.apk | |
| path: app/build/outputs/apk/debug/app-debug.apk |