Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Programmatically Clear Bluetooth Cache using GattServer

I'm slightly familiar with BLE and I am facing some problem with an inherited code. So the app works like that:

  1. With BLE enabled the app scans for devices
  2. The app displays the devices found
  3. The user selects the device to pair with
  4. The app pairs with the device

The problem I'm facing is that after pairing several times (it varies) the phone is not able to discover devices, hence blocking the user to pair.

I'm using GattServer to connect with the client device, and I'm reseting the services as below:

public void resetBluetoothGattServer() {
    Log.i(TAG," resetBluetoothGattServer: bluetoothGattServer: "+ bluetoothGattServer);
    if (bluetoothGattServer != null) {
        if(!bluetoothGattServer.getServices().isEmpty()){
            Log.i(TAG," resetBluetoothGattServer: clearing services on bluetooth Gatt Server");
            bluetoothGattServer.clearServices();
        }
        Log.i(TAG," resetBluetoothGattServer: closing bluetoothGattServer");
        bluetoothGattServer.close();
    }
    bluetoothGattServer = openGattServer();
}

Restarting the phone, turning bluetooth off and then back on, and uninstalling and installing the app won't fix the problem. The only solution is to clear the cache from the Bluetooth Share app on the android apps manager.

This post How to programmatically force bluetooth low energy service discovery on Android without using cache adresses to a similar problem but since we are not using BluetoothGatt to connect it's no a suitable solution. Neither will be to refactor the whole inherited code.

I'm asking you if there is a way to clear the cache programmatically using BluetoothGattServer.

like image 441
Aldo López Avatar asked Jan 19 '17 21:01

Aldo López


People also ask

How do I cache my Bluetooth?

Step 1: Open Settings and go to 'Apps'. Step 2: Next, go to the Bluetooth option and select it. Step 3: Tap on 'Storage' and 'Clear Cache'. Point to note: You need to restart your device and then start pairing it with other Bluetooth devices.

What does clearing Bluetooth data do?

Note: Clearing Bluetooth cache will cause the Bluetooth configuration settings for all your Bluetooth devices to be lost. In a sense, you're resetting Bluetooth on your device and "starting over" fresh. Do this as a last resort and at your own risk. Choose the option to "Display system apps".


1 Answers

One solution - solve this issue using reflection.

private void refreshDeviceCache(BluetoothGatt gatt) {         try {             Method localMethod = gatt.getClass().getMethod("refresh");             if(localMethod != null) {                 localMethod.invoke(gatt);             }         } catch(Exception localException) {             Log.d("Exception", localException.toString());         }     } 

Note : I am not recommended this way

like image 51
Yogesh Rathi Avatar answered Sep 20 '22 13:09

Yogesh Rathi