- Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathplugin.xml
More file actions
Latest commit
36 lines (27 loc) · 1.06 KB
/
Copy pathplugin.xml
File metadata and controls
36 lines (27 loc) · 1.06 KB
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
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<pluginxmlns="http://www.phonegap.com/ns/plugins/1.0"
id="org.devgeeks.volumeslider"
version="1.0.0">
<name>VolumeSlider</name>
<description>Show a volume slider to change the volume of the app without the physical buttons</description>
<keywords>volume, slider, change, set, sound, ios</keywords>
<license>MIT</license>
<author>Tommy-Carlos Williams (github.com/devgeeks)</author>
<engines>
<enginename="cordova"version=">=3.0.0" />
</engines>
<js-modulesrc="www/VolumeSlider.js"name="VolumeSlider">
<clobberstarget="plugins.volumeSlider" />
</js-module>
<!-- ios -->
<platformname="ios">
<config-filetarget="config.xml"parent="/*">
<featurename="VolumeSlider">
<paramname="ios-package"value="VolumeSlider"/>
</feature>
</config-file>
<header-filesrc="src/ios/VolumeSlider.h" />
<source-filesrc="src/ios/VolumeSlider.m" />
<frameworksrc="MediaPlayer.framework"weak="true" />
</platform>
</plugin>