diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index bffff14f3..3b1ed4aaa 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -13,9 +13,7 @@
 #include <QTimer>
 #include <QDateTime>
 
-#if defined(BT_SUPPORT)
 #include <QBluetoothLocalDevice>
-#endif
 
 #include "qt-models/divelistmodel.h"
 #include "qt-models/gpslistmodel.h"
@@ -81,7 +79,6 @@ extern "C" int gitProgressCB(const char *text)
 	return 0;
 }
 
-#if defined(BT_SUPPORT)
 void QMLManager::btHostModeChange(QBluetoothLocalDevice::HostMode state)
 {
 	BTDiscovery *btDiscovery = BTDiscovery::instance();
@@ -98,7 +95,6 @@ void QMLManager::btHostModeChange(QBluetoothLocalDevice::HostMode state)
 	}
 	emit btEnabledChanged();
 }
-#endif
 
 QMLManager::QMLManager() : m_locationServiceEnabled(false),
 	m_verboseEnabled(false),
@@ -139,16 +135,12 @@ QMLManager::QMLManager() : m_locationServiceEnabled(false),
 	appendTextToLog(QStringLiteral("built with libgit2 %1.%2.%3").arg(git_maj).arg(git_min).arg(git_rev));
 	setStartPageText(tr("Starting..."));
 
-#if defined(BT_SUPPORT)
 	// ensure that we start the BTDiscovery - this should be triggered by the export of the class
 	// to QML, but that doesn't seem to always work
 	BTDiscovery *btDiscovery = BTDiscovery::instance();
 	m_btEnabled = btDiscovery->btAvailable();
 	connect(&btDiscovery->localBtDevice, &QBluetoothLocalDevice::hostModeStateChanged,
 		this, &QMLManager::btHostModeChange);
-#else
-	m_btEnabled = false;
-#endif
 	setShowPin(false);
 	// create location manager service
 	locationProvider = new GpsLocation(&appendTextToLogStandalone, this);
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h
index 548f01921..cd827da4d 100644
--- a/mobile-widgets/qmlmanager.h
+++ b/mobile-widgets/qmlmanager.h
@@ -9,9 +9,7 @@
 #include <QElapsedTimer>
 #include <QColor>
 
-#if defined(BT_SUPPORT)
 #include "core/btdiscovery.h"
-#endif
 #include "core/gpslocation.h"
 #include "core/downloadfromdcthread.h"
 #include "qt-models/divelistmodel.h"
@@ -138,9 +136,7 @@ public:
 	bool showPin() const;
 	void setShowPin(bool enable);
 	Q_INVOKABLE void setStatusbarColor(QColor color);
-#if defined(BT_SUPPORT)
 	void btHostModeChange(QBluetoothLocalDevice::HostMode state);
-#endif
 
 #if defined(Q_OS_ANDROID)
 	void writeToAppLogFile(QString logText);