Skip to content

Add android example app #124

Add android example app

Add android example app #124

Workflow file for this run

name: main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 17
- name: Build with Gradle
run: ./gradlew build
- name: Run tests
run: ./gradlew test