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 843c692 commit 8c2e52eCopy full SHA for 8c2e52e
ci/android-install-sdk.sh
@@ -18,9 +18,12 @@ set -ex
18
# located in https://github.com/appunite/docker by just wrapping it in a script
19
# which apparently magically accepts the licenses.
20
21
+ANDROID_SDK_URL=https://dl.google.com/android/repository
22
+ANDROID_SDK_ARCHIVE=platform-tools_r29.0.5-linux.zip
23
+
24
mkdir sdk
-curl --retry 5 https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip -O
-unzip -d sdk sdk-tools-linux-3859397.zip
25
+curl --retry 5 "$ANDROID_SDK_URL/$ANDROID_SDK_ARCHIVE" -O
26
+unzip -d sdk "$ANDROID_SDK_ARCHIVE"
27
28
case "$1" in
29
arm | armv7)
0 commit comments