Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroidWithRossyn authored Sep 27, 2024
1 parent 788e0da commit d59f376
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: set up JDK 11

- name: set up JDK 17 # Update to JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
java-version: '17' # Switch to Java 17
distribution: 'temurin' # Use the Temurin distribution
cache: gradle

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

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

0 comments on commit d59f376

Please sign in to comment.