I am testing an Android phone. I have a Broadcast receiver registered to receive a Bluetooth status change event. I added this to my code as
context.registerReceiver(receiver , BluetoothAdapter.ACTION_STATE_CHANGED)
When I test, the callback does not come to onreceive(). I read that Android O does not support implicit broadcasting. Iām not sure why Iām onreceive()not fired. Is a Bluetooth action state change fixed that has problems with Android O?
source
share