summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btchat/chat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/btchat/chat.cpp')
-rw-r--r--examples/bluetooth/btchat/chat.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/bluetooth/btchat/chat.cpp b/examples/bluetooth/btchat/chat.cpp
index 7fb84ca0..51723813 100644
--- a/examples/bluetooth/btchat/chat.cpp
+++ b/examples/bluetooth/btchat/chat.cpp
@@ -200,10 +200,9 @@ void Chat::connectClicked()
RemoteSelector remoteSelector(adapter);
#ifdef Q_OS_ANDROID
- if (QNativeInterface::QAndroidApplication::sdkVersion() >= 23)
- remoteSelector.startDiscovery(QBluetoothUuid(reverseUuid));
- else
- remoteSelector.startDiscovery(QBluetoothUuid(serviceUuid));
+ // QTBUG-61392
+ Q_UNUSED(serviceUuid);
+ remoteSelector.startDiscovery(QBluetoothUuid(reverseUuid));
#else
remoteSelector.startDiscovery(QBluetoothUuid(serviceUuid));
#endif