cordova-plugin-ignore-mute-switch
v1.0.0
Published
Allows your app to play audio ignoring the mute switch.
Downloads
3
Maintainers
Readme
Ignore Mute Switch - a Cordova Plugin
modified by [Tom Krones] originally by Eddy Verbruggen
0. Index
1. Description
Allows your app to keep on playing audio when it's in the background.
- Compatible with Cordova Plugman.
- For iOS only.
2. Installation
Automatically (CLI / Plugman)
Compatible with Cordova Plugman, compatible with PhoneGap 3.0 CLI, here's how it works with the CLI (backup your project first!):
$ phonegap local plugin add https://github.com/wootwoot1234/cordova-plugin-ignore-mute-switch.git
or
$ cordova plugin add https://github.com/wootwoot1234/cordova-plugin-ignore-mute-switch
$ cordova prepare
Manually
1. Add the following xml to your config.xml
in the root directory of your www
folder:
<feature name="BackgroundAudio">
<param name="ios-package" value="BackgroundAudio" />
<param name="onload" value="true" />
</feature>
2. Download the source files and copy them to your project.
iOS: Copy the .h
and .m
files to platforms/ios/<ProjectName>/Plugins
3. Usage
Nothing to do here as the plugin will call the required native code on load automatically :)
4. License
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.