Added support to 16kb page sizes #69
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 | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| - releases/* | |
| pull_request: | |
| jobs: | |
| android: | |
| name: Build Android | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Build the Android aars | |
| run: pushd Source/src_android && ./gradlew clean build | |
| ios: | |
| name: Build iOS | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout the repo | |
| uses: actions/checkout@v3 | |
| - name: Build the iOS xcframeworks | |
| run: ./scripts/build.sh |