nativescript-ringer

1.0.0 • Public • Published

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-ringer

Usage

To use the ringer module you must first import it:

import { ringer } from "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 to ("silent", "vibrate", or "normal"):

ringer.setMode("vibrate");

Get Current Ringer Mode. (returns "silent", "vibrate", or "normal"):

ringer.getMode();

Readme

Keywords

none

Package Sidebar

Install

npm i nativescript-ringer

Weekly Downloads

7

Version

1.0.0

License

none

Unpacked Size

4.9 kB

Total Files

4

Last publish

Collaborators

  • k3yb0ardn1nja