Skip to content

Commit 52763f5

Browse files
authored
Update android.yml
1 parent d44bfe6 commit 52763f5

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/android.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ jobs:
2727
- name: Setup Android SDK
2828
uses: android-actions/setup-android@v3
2929

30+
- name: Install Ninja and check Android SDK
31+
run: |
32+
sudo apt-get update
33+
sudo apt-get install -y ninja-build
34+
echo "Ninja location and version:"
35+
which ninja
36+
ninja --version
37+
echo "Android SDK location:"
38+
echo $ANDROID_SDK_ROOT
39+
echo "NDK location:"
40+
ls -l /usr/local/lib/android/sdk/ndk/
41+
3042
- name: Set permissions for gradlew
3143
run: chmod +x gradlew
3244

@@ -54,7 +66,7 @@ jobs:
5466
keyAlias: ${{ secrets.ALIAS }}
5567
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
5668
keyPassword: ${{ secrets.KEY_PASSWORD }}
57-
buildToolsVersion: 33.0.0
69+
buildToolsVersion: 34.0.0
5870

5971
- name: Upload Debug APK
6072
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)