我对 BLE 有点熟悉,我在继承代码方面遇到了一些问题。所以这个应用程序是这样工作的:
- 启用 BLE 后,应用程序会扫描设备
- 该应用程序显示找到的设备
- 用户选择要配对的设备
- 应用程序与设备配对
我面临的问题是,在配对多次(它会有所不同)后,手机无法发现设备,从而阻止用户配对。
我正在使用 GattServer 连接客户端设备,并且正在重置服务,如下所示:
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();
}
重新启动手机,关闭蓝牙然后重新打开,卸载并安装应用程序都无法解决问题。唯一的解决方案是从 Android 应用程序管理器上的蓝牙共享应用程序中清除缓存。
这篇文章如何在不使用缓存地址的情况下在 Android 上以编程方式强制蓝牙低能耗服务发现类似的问题,但由于我们没有使用 BluetoothGatt 进行连接,因此它不是一个合适的解决方案。两者都不会重构整个继承的代码。
我在问你是否有办法使用 BluetoothGattServer 以编程方式清除缓存。