mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
6ea50fcfb7
Hard coding desired ANDROID_PLATFORM on multiple places is simply bad. Fix this. Further, set the variables to a much newer state. CAVEAT: this will likely break android build, so be careful on bisecting. All fixed in next, related commits. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
16 lines
478 B
Bash
16 lines
478 B
Bash
#!/bin/bash
|
|
# When changing Qt version remember to update the
|
|
# qt-installer-noninteractive file as well.
|
|
QT_VERSION=5.12
|
|
LATEST_QT=5.12.0
|
|
NDK_VERSION=r18b
|
|
SDK_VERSION=4333796
|
|
ANDROID_BUILDTOOLS_REVISION=28.0.2
|
|
ANDROID_PLATFORM_LEVEL=21
|
|
ANDROID_PLATFORM=android-21
|
|
ANDROID_PLATFORMS=android-27
|
|
ANDROID_NDK=android-ndk-${NDK_VERSION}
|
|
ANDROID_SDK=android-sdk-linux
|
|
# OpenSSL also has an entry in get-dep-lib.sh line 103
|
|
# that needs to be updated as well.
|
|
OPENSSL_VERSION=1.0.2o
|