Paweł Urban

Results 15 comments of Paweł Urban

I'm using the newest version of ABS but the problem still occurs. Adding empty menu item is just a workaround and users get confused after menu key click. Is there...

Current workround for me is to handle generic **onOptionsItemSelected** for provider's ID and do as follows: ``` javascript @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { [...] case R.id.menu_item_share:...

Bluetooth Low Energy generally does not require bonding/pairing and the library doesn't support that. Why do you need to create a bond with BLE device?

I'll keep this issue and we will discuss internally whether it is within the scope. Thank you for your feedback! :)

This is a huge list with some magic behind. So-called Bonding/Binding/Authorization/etc was already mentioned in #35 and I hope it will be included someday. This list indeed could be a...

@dariuszseweryn as far as I know we already do that. `BleConnectionCompat` is enforcing `TRANSPORT_LE` on AndroidM+. Would you like to go further and use hidden API introduced by the https://android.googlesource.com/platform/frameworks/base/+/b88fa824ab6337684de9aa8437c4952df4f1a75e%5E%21/...

It looks like it was introduced with `5.0.0` here: https://android.googlesource.com/platform/frameworks/base/+/android-5.0.0_r1/core/java/android/bluetooth/BluetoothDevice.java Android L preview didn't have it.

Bonding has it’s own, separate call. There is a hidden `createBond` method, allowing to force bonding over LE.

Just to mention that the API may be shared with the mock #370