forked from RasimKanca/cordova-plugin-ringermode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
22 lines (19 loc) · 997 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-ringermode" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>RingerMode</name>
<description>A plugin for getting the ringer mode of a device.</description>
<license>MIT</license>
<keywords>cordova, plugins, ringermode, ringer, mode, silent, mode, silentmode</keywords>
<js-module name="ringermode" src="www/ringerMode.js">
<clobbers target="window.plugins.ringerMode" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="ringerMode">
<param name="android-package" value="com.cordova.plugins.ringermode.ringerMode" />
</feature>
</config-file>
<source-file src="src/android/ringerMode.java"
target-dir="src/com/cordova/plugins/ringermode" />
</platform>
</plugin>