File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
## 0.6.4
2
- * ios example: Fixed Issue with Bluetooth Permissions on iOS 13.3 (fix for: Fixed Issue with Bluetooth Permissions on iOS 13.3 #485 )
3
- * migrate to targetSdkVersion 29 => ACCESS_FINE_LOCATION (fix for: Android X ScanResult empty list #486 )
4
- * Removes minSdk declaration from AndroidManifest.xml (fix for: Remove minSdk declaration from AndroidManifest.xml #507 )
2
+ * Readme code fix (fix from: Readme code fix #466 )
3
+ * ios example: Fixed Issue with Bluetooth Permissions on iOS 13.3 (fix from: Fixed Issue with Bluetooth Permissions on iOS 13.3 #485 )
4
+ * migrate to targetSdkVersion 29 => ACCESS_FINE_LOCATION (fix from: Android X ScanResult empty list #486 )
5
+ * Removes minSdk declaration from AndroidManifest.xml (fix from: Remove minSdk declaration from AndroidManifest.xml #507 )
5
6
6
7
## 0.6.3+1
7
8
* Fix compilation issue with iOS
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ flutterBlue.startScan(timeout: Duration(seconds: 4));
40
40
// Listen to scan results
41
41
var subscription = flutterBlue.scanResults.listen((scanResult) {
42
42
// do something with scan result
43
- device = scanResult.device;
44
- print('${device.name} found! rssi: ${scanResult.rssi}');
43
+ device = scanResult[0] .device;
44
+ print('${device.name} found! rssi: ${scanResult[0] .rssi}');
45
45
});
46
46
47
47
// Stop scanning
You can’t perform that action at this time.
0 commit comments