Skip to content

chore(deps): update plugin com.android.application to v8.3.0-alpha17 - autoclosed #223

chore(deps): update plugin com.android.application to v8.3.0-alpha17 - autoclosed

chore(deps): update plugin com.android.application to v8.3.0-alpha17 - autoclosed #223

Workflow file for this run

name: android-ci
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
branch_protection_rule:
types: [created, completed]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
- name: Android-OpenCV-SDK Setup
run: ./setupOpenCV.sh
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17.X
- name: Build the app
run: ./gradlew assembleDebug
- name: Upload apk
uses: actions/upload-artifact@v3
with:
name: debug apk
path: app/build/outputs/apk/debug/app-debug.apk