diff --git a/android/bluetooth.c b/android/bluetooth.c
index 4ed7dab..661aa52 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
static void get_adapter_properties(void)
{
+ /* TODO should be done in single notification */
get_adapter_address();
get_adapter_name();
get_adapter_uuids();
static void get_remote_device_props(struct device *dev)
{
+ /* TODO should be done in single notification */
+ get_device_friendly_name(dev);
get_device_name(dev);
get_device_uuids(dev);
get_device_class(dev);
get_device_type(dev);
get_device_service_rec(dev);
- get_device_friendly_name(dev);
get_device_rssi(dev);
get_device_version_info(dev);
get_device_timestamp(dev);