Skip to content

Update plugin com.android.application to v8.4.0 #44

Update plugin com.android.application to v8.4.0

Update plugin com.android.application to v8.4.0 #44

Workflow file for this run

name: Push
on:
push:
branches: [ "develop", "main" ]
pull_request:
types: [ opened, synchronize ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "This job is running on a ${{ runner.os }} server hosted by GitHub!"
- uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned."
- run: echo "Setting up JDK"
- name: set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- run: echo "Setting up cmake"
- run: sudo apt install build-essential cmake
- run: echo "The workflow is now ready to test your code."
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- run: echo "Building Debug APK."
- name: Build with Gradle
run: ./gradlew build
- run: echo "Build status report=${{ job.status }}."