forked from MCluck90/cordova-plugin-android-volume
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
26 lines (24 loc) · 1.12 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-android-volume" version="0.0.14"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Android Volume</name>
<js-module name="AndroidVolume" src="www/AndroidVolume.js">
<clobbers target="androidVolume" />
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="AndroidVolume">
<param name="android-package"
value="com.mcluck.plugin.AndroidVolume" />
</feature>
</config-file>
<source-file src="src/android/com/mcluck/plugin/AndroidVolume.java"
target-dir="src/com/mcluck/plugin" />
<source-file src="src/android/com/mcluck/plugin/AndroidVolumeObserver.java"
target-dir="src/com/mcluck/plugin" />
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />
</config-file>
</platform>
</plugin>