Update gradle-wrapper.properties #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ed Screen Recorder | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
# This job will run on ubuntu virtual machine | |
runs-on: ubuntu-latest | |
steps: | |
# Setup Java environment in order to build the Android app. | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
java-version: 11 | |
distribution: temurin | |
# Setup the flutter environment. | |
- uses: subosito/[email protected] | |
with: | |
channel: 'stable' | |
cache: true | |
# Get flutter dependencies. | |
- run: flutter pub get | |
working-directory: ./example | |
# Check for any formatting issues in the code. | |
- run: flutter format . | |
working-directory: ./example | |
# Statically analyze the Dart code for any errors. | |
- run: flutter analyze . | |
working-directory: ./example | |
# Build apk. | |
- run: flutter build apk | |
working-directory: ./example |