Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

device.getUuids() (Android using Bluetooth)

Status
Not open for further replies.

JRB-Bldr

Programmer
May 17, 2001
3,281
0
0
US
I am having trouble getting device.getUuids() working.

My code is pretty simple:
Code:
BluetoothDevice device = leDevices.get(i);    // I use the Watch window to verify that [u]device[/u] has a Valid MAC address
final String deviceName = device.getName();   // [u]deviceName[/u] shows as a Valid device Name
ParcelUuid[] deviceUuid = device.getUuids();  // But [u]deviceUuid[/u] returns a NULL

What am I doing wrong?

Your advice/suggestions would be greatly appreciated.

Thanks,
JRB-Bldr

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top