react-native-headphone-detection-copy
Version:
React Native headphone detection, both audio jack and bluetooth devices!
17 lines (15 loc) • 386 B
JavaScript
import {
NativeModules,
NativeEventEmitter,
} from 'react-native';
const { RNHeadphoneDetection } = NativeModules;
const eventEmitter = new NativeEventEmitter(RNHeadphoneDetection);
export default {
...RNHeadphoneDetection,
addListener(callback) {
return eventEmitter.addListener(
RNHeadphoneDetection.AUDIO_DEVICE_CHANGED_NOTIFICATION,
callback
);
},
};