diff --git a/CHANGELOG.md b/CHANGELOG.md index 204d1fd..72ede96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.16.0 +* Bump bluez to 0.8.3 +* Improve readme + ## 0.15.0 * `getSystemDevices(withServices:)` now sets several generic services by default as filter * `getConnectionState` on Android will now return `BleConnectionState.disconnected` if device is connected to the system but not to the app diff --git a/README.md b/README.md index c689f52..04396da 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,8 @@ UniversalBle.startScan(); UniversalBle.startScan( scanFilter: ScanFilter( withServices: ["SERVICE_UUID"], - withManufacturerData: ["MANUFACTURER_DATA"] + withManufacturerData: [ManufacturerDataFilter(companyIdentifier: COMPANY_IDENTIFIER)], + withNamePrefix: ["NAME_PREFIX"], ) );