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 db83898 commit 7c528f6Copy full SHA for 7c528f6
.github/workflows/scripts-android.yml
@@ -51,12 +51,16 @@ jobs:
51
52
- name: Install Android SDK
53
uses: android-actions/setup-android@v3
54
+ with:
55
+ accept-android-sdk-licenses: false
56
+ packages: ''
57
- - name: Ensure platform-tools available on PATH
58
+ - name: Ensure Android tools available on PATH
59
shell: bash
60
run: |
61
set -euxo pipefail
- yes | sdkmanager --install "platform-tools" >/dev/null
62
+ yes | sdkmanager --install "platform-tools" "build-tools;34.0.0" >/dev/null
63
+ yes | sdkmanager --licenses >/dev/null
64
if [ -n "${ANDROID_HOME:-}" ] && [ -d "${ANDROID_HOME}/platform-tools" ]; then
65
echo "${ANDROID_HOME}/platform-tools" >> "$GITHUB_PATH"
66
fi
0 commit comments