Skip to content

chore: Update build.gradle to use buildToolsVersion 34.0.0 #20

chore: Update build.gradle to use buildToolsVersion 34.0.0

chore: Update build.gradle to use buildToolsVersion 34.0.0 #20

Workflow file for this run

name: "Build Android"
on:
pull_request:
branches:
- main
push:
branches:
- test-apk
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up Java
uses: actions/setup-java@v4
with:
distribution: "oracle"
java-version: "17"
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Flutter analyze
run: flutter analyze
- name: Get dependencies
run: flutter pub get
- name: Build Android
run: flutter build apk --release