From 68fdabebd3e6507912424a71bb539f5c3f852d34 Mon Sep 17 00:00:00 2001 From: rpj Date: Sun, 13 Oct 2019 00:31:59 +0200 Subject: [PATCH] android: fix bluetooth not detecting devices since android api version 23 / android 6.0 it seems one must request one of the following permissions to be able to find nearby bluetooth devices (for security reasons) ACCESS_COARSE_LOCATION ACCESS_FINE_LOCATION see this for a source: https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-hardware-id Change-Id: I629391ec9711613653f44bcf483086a59e75d835 --- android/sdremote/mobile/src/main/AndroidManifest.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/sdremote/mobile/src/main/AndroidManifest.xml b/android/sdremote/mobile/src/main/AndroidManifest.xml index 825febf..be04362 100644 --- a/android/sdremote/mobile/src/main/AndroidManifest.xml +++ b/android/sdremote/mobile/src/main/AndroidManifest.xml @@ -26,6 +26,8 @@ android:name="android.permission.BLUETOOTH"/> +