Skip to content

React Native headphone detection, both audio jack and bluetooth devices!

License

Notifications You must be signed in to change notification settings

VladYermakov/react-native-headphone-detection

 
 

Repository files navigation

react-native-headphone-detection

Getting started

$ yarn add react-native-headphone-detection

Mostly automatic installation

  • For react-native 0.60+:

    $ cd ios && pod install && cd ..
  • For previous versions:

    $ react-native link react-native-headphone-detection

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';

// Function
HeadphoneDetection.isAudioDeviceConnected().then(console.log);
/*
  Output:
  {
    audioJack: boolean,
    bluetooth: boolean,
  }
*/

// You can also use it as an event listener
HeadphoneDetection.addListener(console.log);

// Don't forget to remove the listener!
if (HeadphoneDetection.remove) { // The remove is not necessary on Android
  HeadphoneDetection.remove();
}

About

React Native headphone detection, both audio jack and bluetooth devices!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 54.5%
  • Objective-C 26.3%
  • TypeScript 10.9%
  • Ruby 4.9%
  • JavaScript 3.4%