react-native-headphone-detection
Getting started
$ yarn add react-native-headphone-detection
Mostly automatic installation
Add permissions for android:
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
Usage
import HeadphoneDetection from 'react-native-headphone-detection';
HeadphoneDetection.isAudioDeviceConnected().then(console.log);
HeadphoneDetection.addListener(console.log);
if (HeadphoneDetection.remove) {
HeadphoneDetection.remove();
}