mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
builld-system: switch Android to Qt 5.13.1
This fixes the SSL issue with Android 5.x/Lollipop. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
4458373488
commit
ea0e447e0d
4 changed files with 11 additions and 5 deletions
|
@ -32,8 +32,8 @@ Controller.prototype.ComponentSelectionPageCallback = function() {
|
|||
var widget = gui.currentPageWidget();
|
||||
|
||||
widget.deselectAll();
|
||||
widget.selectComponent('qt.qt5.5124.android_armv7');
|
||||
widget.selectComponent('qt.qt5.5124.android_arm64_v8a');
|
||||
widget.selectComponent('qt.qt5.5131.android_armv7');
|
||||
widget.selectComponent('qt.qt5.5131.android_arm64_v8a');
|
||||
|
||||
gui.clickButton(buttons.NextButton);
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
# When changing Qt version remember to update the
|
||||
# qt-installer-noninteractive file as well.
|
||||
QT_VERSION=5.12
|
||||
LATEST_QT=5.12.4
|
||||
QT_VERSION=5.13
|
||||
LATEST_QT=5.13.1
|
||||
NDK_VERSION=r18b
|
||||
SDK_VERSION=4333796
|
||||
ANDROID_BUILDTOOLS_REVISION=28.0.3
|
||||
|
|
|
@ -22,7 +22,7 @@ RUN apt-get update && \
|
|||
# install, NDK and SDK there, plus the three files from the Subsurface
|
||||
# sources that we need to get the prep routines to run
|
||||
RUN mkdir -p /android
|
||||
ADD qt-opensource-linux-x64-5.12.4.run /android/
|
||||
ADD qt-opensource-linux-x64-5.13.1.run /android/
|
||||
ADD android-ndk-r*-linux-x86_64.zip /android/
|
||||
ADD sdk-tools-linux-*.zip /android/
|
||||
ADD android-build-wrapper.sh variables.sh qt-installer-noninteractive.qs /android/
|
||||
|
|
6
scripts/docker/android-build-container/download.sh
Executable file
6
scripts/docker/android-build-container/download.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
wget https://download.qt.io/official_releases/qt/5.13/5.13.1/qt-opensource-linux-x64-5.13.1.run
|
||||
wget https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip
|
||||
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
|
||||
wget https://ftp.osuosl.org/pub/blfs/conglomeration/cmake/cmake-3.13.2.tar.gz
|
Loading…
Add table
Reference in a new issue