aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-15 11:45:19 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-17 10:50:51 -0800
commit9e369688811563c77b5152a41c0ddc615abf9b74 (patch)
treed21145a365dfc3e7e72be8ceea64eaa47b282ee2 /mobile-widgets
parent0178f0c7e78d8e61e5794f33e519a87c56039c06 (diff)
downloadsubsurface-9e369688811563c77b5152a41c0ddc615abf9b74.tar.gz
mobile/export: don't allow file based exports on Android
There is no native file dialog, access to the file system is highly restricted and will be much more so in Android 11. Let's not even start with this. This should never have been merged as it was. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r--mobile-widgets/qml/Export.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/mobile-widgets/qml/Export.qml b/mobile-widgets/qml/Export.qml
index 2b1b004ab..c75a02a94 100644
--- a/mobile-widgets/qml/Export.qml
+++ b/mobile-widgets/qml/Export.qml
@@ -114,6 +114,10 @@ Kirigami.ScrollablePage {
}
}
+ // given that there is no native file dialog on Android and that access to
+ // the file system is increasingly restrictive in future versions, file based
+ // export really doesn't make sense on Android
+
ColumnLayout {
width: parent.width
spacing: 1
@@ -123,6 +127,7 @@ Kirigami.ScrollablePage {
RadioButton {
Layout.fillWidth: true
text: qsTr("Export Subsurface XML")
+ visible: Qt.platform.os !== "android"
checked: true
exclusiveGroup: radioGroup
onClicked: {
@@ -133,6 +138,7 @@ Kirigami.ScrollablePage {
RadioButton {
Layout.fillWidth: true
text: qsTr("Export Subsurface dive sites XML")
+ visible: Qt.platform.os !== "android"
exclusiveGroup: radioGroup
onClicked: {
selectedExport = ExportType.EX_DIVE_SITES_XML
@@ -142,6 +148,7 @@ Kirigami.ScrollablePage {
RadioButton {
Layout.fillWidth: true
text: qsTr("Export UDDF")
+ visible: Qt.platform.os !== "android"
exclusiveGroup: radioGroup
onClicked: {
selectedExport = ExportType.EX_UDDF
@@ -199,7 +206,7 @@ Kirigami.ScrollablePage {
textPassword.visible = false
fieldPassword.visible = false
uploadDialog.open()
- } else {
+ } else if (Qt.platform.os !== "android") {
saveAsDialog.open()
}
}