I would like to check if bluetooth is enabled on any Android device periodically. Is there any intents that I could catch using BroadcastReceiver to do so, or is there other
Here I have other alternative as an answer for this question.
First add following lines in your Manifest file.
Now, where you want to check Bluetooth supportability, use following code.
boolean isBluetoothSupported = getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH);