I am trying to scan for beacons using startScan(filters, settings, callbackIntent). I have an implementation that works fine for Sony Xperia XZ, and Nexus 5X. The only other dev
You need to pass an empty filters list to the startScan() call instead of null
List listOfFiters = new ArrayList<>(); ScanFilter.Builder builder = new ScanFilter.Builder(); ScanFilter filter = builder.build(); listOfFiters.add(filter); bleScanner.startScan(listOfFilters, null, getPendingIntent())