In my app I am using beacons name for work. After name change of beacons, some are seeing OK, some not. They show old name. I find that there's problem with bluetooth cache in device. How can I clear cache? I tried:
public void btDevice(){
BluetoothDevice device = mbluetoothAdapter.getRemoteDevice(idKey);
device.fetchUuidsWithSdp();
But not success. I wish to avoid use android.bluetooth because I wish to avoid prompting for pairing every time device is in range. Now I use altbeacon lib to manage beacons.