summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-05-12 01:24:58 -0400
committerDaniel Micay <danielmicay@gmail.com>2020-05-12 01:24:58 -0400
commit3b6d18a19f73153e9c539be709e6f75bb7b1db33 (patch)
tree28feb67ecced8d100130e461ca053ee77f568c49
parent9a77d9e73b452fcd9539df3f795397d24606a77d (diff)
add hash checks for prebuilt SDK / Android Studio
-rw-r--r--static/build.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/static/build.html b/static/build.html
index d27f50f3..181063b7 100644
--- a/static/build.html
+++ b/static/build.html
@@ -769,6 +769,7 @@ git am --whitespace=nowarn ../patches/*.patch</pre>
<pre>mkdir -p ~/android/sdk/cmdline-tools
cd ~/android/sdk/cmdline-tools
curl -O https://dl.google.com/android/repository/commandlinetools-linux-6200805_latest.zip
+echo 'f10f9d5bca53cc27e2d210be2cbc7c0f1ee906ad9b868748d74d62e10f2c8275 commandlinetools-linux-6200805_latest.zip' | sha256sum -c
unzip commandlinetools-linux-6200805_latest.zip
rm commandlinetools-linux-6200805_latest.zip
mv tools latest</pre>
@@ -823,6 +824,7 @@ export PATH="$HOME/android/sdk/cmdline-tools/latest/bin"</pre>
<pre>cd ~/android
curl -O https://dl.google.com/dl/android/studio/ide-zips/3.6.3.0/android-studio-ide-192.6392135-linux.tar.gz
+echo '33ec9f61b20b71ca175cd39083b1379ebba896de78b826ea5df5d440c6adfd2a android-studio-ide-192.6392135-linux.tar.gz' | sha256sum -c
tar xf android-studio-ide-192.6392135-linux.tar.gz
rm android-studio-ide-192.6392135-linux.tar.gz
mv android-studio studio</pre>