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 b99a0c2 commit 4b8206fCopy full SHA for 4b8206f
.github/workflows/scripts-android.yml
@@ -49,18 +49,18 @@ jobs:
49
distribution: temurin
50
java-version: '17'
51
52
- - name: Install Android SDK
+ - name: Install Android SDK tools
53
uses: android-actions/setup-android@v3
54
- with:
55
- accept-android-sdk-licenses: true
56
- packages: |
57
- platform-tools
58
- build-tools;34.0.0
59
- platforms;android-33
+
+ - name: Install required Android packages
+ run: |
+ set -eux
+ yes 2>/dev/null | sdkmanager --licenses >/dev/null
+ yes 2>/dev/null | sdkmanager --install "platform-tools" "build-tools;34.0.0" "platforms;android-33" >/dev/null
60
61
- name: Verify platform tools
62
run: |
63
- set -euxo pipefail
64
command -v adb
65
adb version
66
0 commit comments