We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5056824 commit 9909f8bCopy full SHA for 9909f8b
1 file changed
IDE/Android/build.sh
@@ -3,7 +3,10 @@
3
set -e
4
WORKSPACE=$(pwd)
5
6
-DEBIAN_FRONTEND=noninteractive apt update && apt install -y git make autoconf libtool android-tools-adb unzip wget
+AUTO_INSTALL_TOOLS=${AUTO_INSTALL_TOOLS:-true}
7
+if [ "${AUTO_INSTALL_TOOLS}" == "true" ]; then
8
+ DEBIAN_FRONTEND=noninteractive apt update && apt install -y git make autoconf libtool android-tools-adb unzip wget
9
+fi
10
11
# https://developer.android.com/ndk/downloads/
12
export ANDROID_NDK_ROOT=${WORKSPACE}/android-ndk-r26b
0 commit comments