@ghinwa/react-native-audio-session-manager
v0.0.10
Published
We can't recommend you use this module in production yet.
Downloads
6
Readme
Work in progress.
We can't recommend you use this module in production yet.
react-native-audio-session-manager
Getting started
$ npm install @ghinwa/react-native-audio-session-manager --save
Mostly automatic installation
$ react-native link @ghinwa/react-native-audio-session-manager
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-audio-session-manager
and addRNAudioSessionManager.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNAudioSessionManager.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNAudioSessionManagerPackage;
to the imports at the top of the file - Add
new RNAudioSessionManagerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-audio-session-manager' project(':react-native-audio-session-manager').projectDir = new File(rootProject.projectDir, '../node_modules/@ghinwa/react-native-audio-session-manager/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-audio-session-manager')
Windows
- In Visual Studio add the
RNAudioSessionManager.sln
innode_modules/react-native-audio-session-manager/windows/RNAudioSessionManager.sln
folder to their solution, reference from their app. - Open up your
MainPage.cs
app
- Add
using Audio.Session.Manager.RNAudioSessionManager;
to the usings at the top of the file - Add
new RNAudioSessionManagerPackage()
to theList<IReactPackage>
returned by thePackages
method
Usage
import RNAudioSessionManager from 'react-native-audio-session-manager';
RNAudioSessionManager;
API
getHeadphonesConnected
returns promise (bool) returns a promise with valuetrue
when the headphones are connected andfalse
otherwise. On ios it usesAVAudioSessionPortHeadphones
andAVAudioSessionPortBluetoothHFP
to resolve if headphones are connected.onHeadphonesStatusChange(callback)
Executes callback everytime the headphones state changes
onHeadphonesStatusChange((connected) => {
if (connected) {
//
}
})