BroadcastReceiver and ACTION_BOND_STATE_CHANGED working partialy in Android 9.0
You should try to retrieve the EXTRA_BOND_STATE
like that :
val state = intent.extras?.get(BluetoothDevice.EXTRA_BOND_STATE) as Int
You should try to retrieve the EXTRA_BOND_STATE
like that :
val state = intent.extras?.get(BluetoothDevice.EXTRA_BOND_STATE) as Int