Lucas Leal
Lucas Leal

Reputation: 111

Android SDK - List bluetooth profiles

In Android, is there any way to list the bluetooth profiles or even consult them by coding or at least in terminal emulator ?

I want that because most of the manufactures does not know or do not specify wich profiles are supported and I want to know (without testing) for a lot of different devices, if they can connect with HID profiles. And even if the manufacture claims support, the user can install custom ROMs that don't or vice-versa.

Upvotes: 0

Views: 2279

Answers (2)

Dennis Mathews
Dennis Mathews

Reputation: 6975

Not aware of anything in code that can get the list of supported profile, But if it is a Bluetooth device then it needs to have be Qualified and the Qualification information in https://www.bluetooth.org/tpg/listings.cfm should show the device and list the profiles it supports. if a user modifies the ROM or anything like that then it cannot be called Bluetooth (since it voilates the Qualification sanctity)

Upvotes: 1

ashish
ashish

Reputation: 1381

If its a phone and supports bluez, you can check with "sdptool browse local"

Upvotes: 1

Related Questions