1.0.0 • Published 4 years ago
nativescript-ringer v1.0.0
NativeScript Ringer Plugin
A plugin for controlling the ringer volume and mode in NativeScript Android apps.
Installation
Run the following command from the root of your project:
$ tns plugin add nativescript-ringerUsage
To use the ringer module you must first require() it:
var ringer = require("nativescript-ringer");After you have a reference to the module you can make calls to its methods like in the examples below.
Increase Volume:
ringer.increaseVolume();Decrease Volume:
ringer.decreaseVolume();Set Volume to a specific value (0-6):
ringer.setVolume(6);Mute Volume:
ringer.mute();UnMute Volume:
ringer.unmute();Toggle Mute:
ringer.toggleMute();Set Ringer Mode ("silent", "vibrate", or "normal"):
ringer.setMode("vibrate");