Skip to main content

Audio Management

A Cordova plugin to manage volume of audio streams for: ring, music, notification and system. Possible ringer values for those streams are: silent, vibrate and normal.

https://github.com/clovelCed/cordova-plugin-audiomanagement

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install clovelced-plugin-audiomanagement
$ npm install @ionic-native/audio-management
$ ionic cap sync

Supported Platforms#

  • Android

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { AudioManagement } from '@ionic-native/audio-management/ngx';
constructor(public audioman: AudioManagement) { }
...
setAudioMode() {
this.audioman.setAudioMode(AudioManagement.AudioMode.NORMAL)
.then(() => {
console.log('Device audio mode is now NORMAL');
})
.catch((reason) => {
console.log(reason);
});
}
getAudioMode() {
this.audioman.getAudioMode()
.then((value: AudioManagement.AudioModeReturn) => {
console.log('Device audio mode is ' + value.label + ' (' + value.audioMode + ')');
})
.catch((reason) => {
console.log(reason);
});
}