If you use CentralManager and PeripheralManager together, BluetoothCentralManager.cancelConnection() does not work.
bagmin33 opened this issue · 2 comments
bagmin33 commented
I am not good at English. Sorry
If you use BluetoothCentralManager and BluetoothPeripheralManager together,
The BluetoothCentralManager.cancelConnection() function does not work.
public void initBluetooth(Context context) {
bluetoothManager = (BluetoothManager) context.getSystemService(Context.BLUETOOTH_SERVICE);
bluetoothAdapter = bluetoothManager.getAdapter();
bluetoothCentralManager = new BluetoothCentralManager(context, bluetoothCentralManagerCallback, new Handler(Looper.getMainLooper()));
bluetoothPeripheralManager = new BluetoothPeripheralManager(context, bluetoothManager, bluetoothPeripheralManagerCallback);
}
- call bluetoothCentralManager.cancelConnection()
- response BluetoothCentralManagerCallback.onDisconnectedPeripheral() status is SUCCESS
- but It was not actually disconnected. (T^T)
Please help me.
weliem commented
Can you provide a log so that I can see what is going on?
weliem commented
Closing due to lack of information