diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2018-06-30 21:23:09 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-04 13:11:21 -0700 |
commit | e6e9470f81315b9d8446b8a00b296050537826e7 (patch) | |
tree | bf6692e9b32a487230def2bb974657755c6dbddd /packaging | |
parent | 735f7cd25a2e1bf63f4d2a4c54ecba63029d84ae (diff) | |
download | subsurface-e6e9470f81315b9d8446b8a00b296050537826e7.tar.gz |
Add build variables file
This adds a file that contains the variables used in
the android-build-wrapper and build scripts.
This gives a single location for setting which versions
of Qt, NDK and SDK we use when building the mobile app on linux.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/android/variables.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/packaging/android/variables.sh b/packaging/android/variables.sh new file mode 100644 index 000000000..09dfa0759 --- /dev/null +++ b/packaging/android/variables.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +QT_VERSION=5.10 +LATEST_QT=5.10.1 +NDK_VERSION=r14b +SDK_VERSION=3859397 +ANDROID_BUILDTOOLS_REVISION=25.0.3 +ANDROID_PLATFORMS=android-27 +ANDROID_NDK=android-ndk-${NDK_VERSION} +ANDROID_SDK=android-sdk-linux +OPENSSL_VERSION=1.0.2l |