We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It'll be helpful to have getter in RxBleDeviceImpl class for bluetoothDevice (e.g. for using combined BLE and classic Bluetooth)
The text was updated successfully, but these errors were encountered:
This would be nice 👍
my Workaround is reflection:
try { Field field = device.getClass().getDeclaredField("bluetoothDevice"); field.setAccessible(true); BluetoothDevice nativeDevice = (BluetoothDevice) field.get(device); } catch (Exception e) { e.printStackTrace(); }
Sorry, something went wrong.
Exposed android.bluetooth.BluetoothDevice in RxBleDevice. ( #23 )
9fbc727
Reviewers: michal.zielinski, pawel.urban Reviewed By: pawel.urban Differential Revision: https://phabricator.polidea.com/D1631
Should be possible to use RxBleDevice.getBluetoothDevice() in the next snapshot of the library.
RxBleDevice.getBluetoothDevice()
dariuszseweryn
No branches or pull requests
It'll be helpful to have getter in RxBleDeviceImpl class for bluetoothDevice (e.g. for using combined BLE and classic Bluetooth)
The text was updated successfully, but these errors were encountered: