From 72e53446a4944613b4b944fb0d7c8dea056e2213 Mon Sep 17 00:00:00 2001 From: Jack <231938068+digital-coder-jack@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:00:49 +0530 Subject: [PATCH] Update android.yml --- .github/workflows/android.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index dfb8c2f..6ba7b69 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -17,12 +17,12 @@ jobs: distribution: temurin java-version: '17' - - name: Grant Execute Permission - run: chmod +x gradlew + - name: Make Gradlew executable + run: chmod +x ./gradlew working-directory: api/Android - - name: Build APK - run: ./gradlew assembleDebug + - name: Build Debug APK + run: ./gradlew clean assembleDebug working-directory: api/Android - name: Upload APK