aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth
AgeCommit message (Collapse)Author
2020-11-04Improve the reliability of bluetooth state change Rpcs. (#134)tprotopopov-dev
2020-02-12update btBecomeDiscoverable to handle api level (#129)jwang1013
Android SDK beyond 29 changed the BluetoothAdapter.setScanMode signature to (Integer, Long). change btBecomeDiscoverable to handle different api level.
2020-01-14Add a Rpc "btIsA2dpPlaying" to BluetoothA2dpSnippet (#128)chuanhsiao
A RPC method is used to check A2DP audio path is enabled or not.
2019-08-22Fix "JavaCodeClarity" problem for BluetoothHearingAidSnippet (#122)chuanhsiao
2019-08-21Create BluetoothHearingAidSnippet.java (#119)chuanhsiao
2019-01-11Migrate to androidx packages (#105)Ang Li
2018-05-21Add bt cancel discovery. (#98)Ang Li
`btCancelDiscovery` synchronous Rpc.
2017-12-15Handle a possible race condition in wifi/bt toggle. (#91)Ang Li
E.g. if BT was in the process of turning off when we called `btEnable`, BT would finish turning off before turning on again, but the `btEnable` call would timeout before that. Same situation for `btDisable` and wifi toggles.
2017-07-11Remove bt snoop log APIs. (#66)Ang Li
The official story is that only Settings running as system UID can call them.
2017-06-13Minor bug fix to btUnpairedDevice() (#61)chok
* Fixed btUnpairDevice() bug where an exception is thrown even in the success case
2017-06-12Add basic Bluetooth pairing and A2DP connection features. (#54)Ang Li
* Add support for pairing/unpairing a device. * Add support for connecting with A2DP profile. * Reorganize Bluetooth related snippets for future expansion of profile support. * Use Bundle instead of JSONObject for BluetoothDevice serialization.