I want to read the DeveloperSettings like - Bluetooth HCI snoop capture enabled/disabled. Does Android provide an API for user applications to read this information. Is there a listener to which user space app can register and get a callback when value of DeveloperSettings change?
Asked
Active
Viewed 94 times
1 Answers
0
AFAIK you can access some of the properties on the Settings using for example :Settings.Secure.getInt(getContentResolver(),Settings.Secure.BLUETOOTH_ON,0);
I'm not sure about all the features available for developers. Also some of them need root to be modified.

113408
- 3,364
- 6
- 27
- 54
-
I am specifically trying to read Settings.Secure.BLUETOOTH_HCI_LOG . – Anup Warnulkar Aug 27 '14 at 06:23