top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to check Bluetooth Profiles supported on a android device?

+2 votes
970 views
How to check Bluetooth Profiles supported on a android device?
posted Jan 13, 2014 by Naveena Garg

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

use reflection to obtain hidden objects and its methods

Method m = mBluetoothAdapter.getClass().getDeclaredMethod("getUuids", noparams);
for (ParcelUuid u: (ParcelUuid[]) m.invoke(mBluetoothAdapter, null) ) {
 Log.i(TAG, "("+u.toString()+")");
}
answer Jan 13, 2014 by Jai Prakash
Similar Questions
+2 votes

I want to test bluetooth on Android Development environment any suggestions?

+1 vote

Are there any patches/example on how to enable USB bluetooth support with JB 4.2.2 (bluedroid)?

+1 vote

I use Unity and have a bluetooth button in my status bar. When I switch off bluetooth with this
button, my hardware LED still tells bluetooth is on!

Do you have any idea how I can get this bluetooth software switch working?

...