Skip to content

Rename missed imports #11

Rename missed imports

Rename missed imports #11

Workflow file for this run

name: Android Build
on:
push:
branches:
- master # Change this to your main branch name (e.g., master)
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '11' # Change this to the required Java version for your Android project
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.4.2
- name: Setup Android NDK
uses: nttld/[email protected]
with:
ndk-version: r14b
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Build APK
run: ./gradlew assembleDebug # Change 'assembleDebug' to 'assembleRelease' if you want a release build
- name: Upload APK artifact
uses: actions/upload-artifact@v2
with:
name: app-debug # Change this to your desired artifact name
path: ./app/build/outputs/apk/debug/LSLRecorder-1.0.0-debug.apk