AndroidSmoothBluetooth
AndroidSmoothBluetooth copied to clipboard
ERROR: method adapter in class Builder cannot be applied to given types
Error:(223, 21) error: method adapter in class Builder cannot be applied to given types; required: ListAdapter,ListCallback found: DevicesAdapter reason: actual and formal argument lists differ in length
Same issue.
You can pass null
as ListCallback
method,
.adapter(new DevicesAdapter(MainActivity.this, deviceList), null)
and it'll be ok.