universal_ble
universal_ble copied to clipboard
Windows filter with services issue
On ios and android if i set list of services to scan ScanFilter like that:
List<String> allScanningServices = [
"0000fae5-0000-1000-8000-00805f9b34fb",
"6e400001-b5a3-f393-e0a9-e50e24dcca9e",
];
UniversalBle.startScan(
scanFilter: ScanFilter(
withServices: allScanningServices
),
)
Application accept all devices which got any of listed services. But on windows it get device only if there is one service in list, and device got this service (i do not tried when device has all services from list). I need to find devices with any of these services, but olnly way on windows is to scan without this filter. This issue is in library since I remember.