diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-11-18 21:55:36 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-11-19 17:18:33 -0800 |
commit | 3a00ac0157ca4ad680c79da269a52bcd4f71f8d6 (patch) | |
tree | 629aa8ad21c591210a736616b0b3ed9038ac394a /packaging/android/variables.sh | |
parent | fd88058060003b3b82e38becca25ca9905e6efb2 (diff) | |
download | subsurface-3a00ac0157ca4ad680c79da269a52bcd4f71f8d6.tar.gz |
android: add new build setup script
This installs the required versions for most components, switches us to
Qt 5.15, current SDK, NDK, and the current OpenSSL version.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/android/variables.sh')
-rw-r--r-- | packaging/android/variables.sh | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/packaging/android/variables.sh b/packaging/android/variables.sh index 88d105756..f2c940a77 100644 --- a/packaging/android/variables.sh +++ b/packaging/android/variables.sh @@ -1,16 +1,14 @@ #!/bin/bash # When changing Qt version remember to update the # qt-installer-noninteractive file as well. -QT_VERSION=5.13 -LATEST_QT=5.13.2 -NDK_VERSION=r18b -SDK_VERSION=4333796 -ANDROID_BUILDTOOLS_REVISION=28.0.3 +QT_VERSION=5.15 +LATEST_QT=5.15.1 +NDK_VERSION=21.3.6528147 +ANDROID_BUILDTOOLS_REVISION=29.0.3 ANDROID_PLATFORM_LEVEL=21 ANDROID_PLATFORM=android-21 -ANDROID_PLATFORMS=android-27 -ANDROID_NDK=android-ndk-${NDK_VERSION} -ANDROID_SDK=android-sdk-linux +ANDROID_PLATFORMS=android-29 +ANDROID_NDK=ndk/${NDK_VERSION} # OpenSSL also has an entry in get-dep-lib.sh line 103 # that needs to be updated as well. -OPENSSL_VERSION=1.1.1d +OPENSSL_VERSION=1.1.1h |