Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lost-Fly authored May 25, 2024
1 parent 163105e commit d8b72ff
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,24 @@ on:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Install required Android SDKs
run: sdkmanager "platforms;android-30" "build-tools;30.0.3"

- name: Build with Gradle
run: ./gradlew clean build
run: ./gradlew clean build --stacktrace

0 comments on commit d8b72ff

Please sign in to comment.