-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
50 lines (40 loc) · 1.52 KB
/
plugin.xml
File metadata and controls
50 lines (40 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version='1.0' encoding='utf-8'?>
<plugin
id="com.demobo.cordova.volume"
version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0" >
<name>CorHttpd</name>
<description>Volume button plugin for Cordova</description>
<author>de Mobo</author>
<license>MIT</license>
<keywords>volume button, ios</keywords>
<repo>https://github.com/demobo-com/volume_plugin.git</repo>
<issue>https://github.com/demobo-com/volume_plugin/issues</issue>
<engines>
<engine name="cordova" version=">=2.9" />
</engines>
<js-module name="VolumePlugin" src="www/volume_plugin.js">
<clobbers target="cordova.plugins.VolumePlugin" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="VolumePlugin">
<param name="ios-package" value="VolumePlugin" />
</feature>
</config-file>
<header-file src="src/ios/VolumePlugin.h" />
<source-file src="src/ios/VolumePlugin.m" />
<source-file src="src/ios/VolumeListener/AppDelegate.h" />
<source-file src="src/ios/VolumeListener/AppDelegate.m" />
<source-file src="src/ios/VolumeListener/silence.mp3" />
<source-file src="src/ios/VolumeListener/VLViewController.h" />
<source-file src="src/ios/VolumeListener/VLViewController.m" />
<source-file src="src/ios/VolumeListener/VolumeListener.h" />
<source-file src="src/ios/VolumeListener/VolumeListener.m" />
<framework src="MediaPlayer.framework" />
<framework src="AVFoundation.framework" />
<framework src="UIKit.framework" />
<framework src="Foundation.framework" />
<framework src="CoreGraphics.framework" />
</platform>
</plugin>