Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## NEXT

- FIX(darwin): report CoreMIDI destinations as `inputPorts` and sources as `outputPorts` so port direction matches Android and the public device-owned API contract (#164).
- FIX(android): disable Kotlin incremental compilation for the Android implementation so Windows builds do not fail when the app project and Pub cache are on different drives (#163).

## 1.0.7
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,11 @@ void main() {

test('connectToDevice makes registered known BLE device visible', () async {
fakePlatform.servicesByDevice['ble-known-connect'] = midiServices();
final registered = transport.registerKnownDevice(
'ble-known-connect',
'Known Connect Device',
)!;
final registered =
transport.registerKnownDevice(
'ble-known-connect',
'Known Connect Device',
)!;

expect(await transport.devices, isEmpty);

Expand Down