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()+")"); }
I want to test bluetooth on Android Development environment any suggestions?
Are there any patches/example on how to enable USB bluetooth support with JB 4.2.2 (bluedroid)?
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?