Skip to content

Commit

Permalink
Update android.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jvde-github authored Dec 15, 2024
1 parent d44bfe6 commit 52763f5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,18 @@ jobs:
- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Install Ninja and check Android SDK
run: |
sudo apt-get update
sudo apt-get install -y ninja-build
echo "Ninja location and version:"
which ninja
ninja --version
echo "Android SDK location:"
echo $ANDROID_SDK_ROOT
echo "NDK location:"
ls -l /usr/local/lib/android/sdk/ndk/
- name: Set permissions for gradlew
run: chmod +x gradlew

Expand Down Expand Up @@ -54,7 +66,7 @@ jobs:
keyAlias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 33.0.0
buildToolsVersion: 34.0.0

- name: Upload Debug APK
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 52763f5

Please sign in to comment.