Skip to content
New issue

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

Updated RxBleClient#getBondedDevices() javadoc. #804

Merged
merged 2 commits into from
Jul 9, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,11 @@ public static void updateLogOptions(LogOptions logOptions) {
* If Bluetooth state is not STATE_ON, this API will return an empty set. After turning on Bluetooth, wait for ACTION_STATE_CHANGED
* with STATE_ON to get the updated value.
*
* Calling this function on or above Android 12 (API >= 31) requires BLUETOOTH_CONNECT runtime permission.
*
* @return set of currently bonded devices
* @throws UnsupportedOperationException if called on system without Bluetooth capabilities
* @throws java.lang.SecurityException if called on Android 12 or newer (API >= 31) and no BLUETOOTH_CONNECT runtime permission granted
*/
public abstract Set<RxBleDevice> getBondedDevices();

Expand Down