We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d44bfe6 commit 52763f5Copy full SHA for 52763f5
.github/workflows/android.yml
@@ -27,6 +27,18 @@ jobs:
27
- name: Setup Android SDK
28
uses: android-actions/setup-android@v3
29
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
+
42
- name: Set permissions for gradlew
43
run: chmod +x gradlew
44
@@ -54,7 +66,7 @@ jobs:
54
66
keyAlias: ${{ secrets.ALIAS }}
55
67
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
56
68
keyPassword: ${{ secrets.KEY_PASSWORD }}
57
- buildToolsVersion: 33.0.0
69
+ buildToolsVersion: 34.0.0
58
70
59
71
- name: Upload Debug APK
60
72
uses: actions/upload-artifact@v3
0 commit comments