Skip to content

fix(*): fix exception that happens when the stream is stopped #609

fix(*): fix exception that happens when the stream is stopped

fix(*): fix exception that happens when the stream is stopped #609

Workflow file for this run

# This workflow will build a Java project with Gradle
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
- name: Assemble
run: ./gradlew assembleDebug
- name: Upload APKs
uses: actions/upload-artifact@v3
with:
name: apks
path: |
demos/**/build/outputs/apk/debug/*.apk