Skip to content

Commit d44bfe6

Browse files
authored
Update android.yml
1 parent 037ead3 commit d44bfe6

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

.github/workflows/android.yml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,24 +29,18 @@ jobs:
2929

3030
- name: Set permissions for gradlew
3131
run: chmod +x gradlew
32-
33-
- name: Install Ninja and check Android SDK
32+
33+
- name: Check Android SDK Details
3434
run: |
35-
sudo apt-get update
36-
sudo apt-get install -y ninja-build
37-
echo "Ninja location and version:"
38-
which ninja
39-
ninja --version
40-
echo "Android SDK location:"
35+
echo "SDK Location:"
4136
echo $ANDROID_SDK_ROOT
42-
echo "NDK location:"
43-
ls -l /usr/local/lib/android/sdk/ndk/
44-
45-
- name: Check Ninja location
46-
run: |
47-
which ninja
48-
ninja --version
49-
37+
echo "Build Tools:"
38+
ls -la $ANDROID_SDK_ROOT/build-tools/
39+
echo "Platform Tools:"
40+
ls -la $ANDROID_SDK_ROOT/platform-tools/
41+
echo "NDK versions:"
42+
ls -la $ANDROID_SDK_ROOT/ndk/
43+
5044
- name: Build
5145
run: ./gradlew build
5246

0 commit comments

Comments
 (0)