-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.xml
60 lines (45 loc) · 1.56 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!--
Plugin.xml
Created by Josh Kennedy on 3 November 2014
This computer source code is bound under the University of Illinois/NCSA license.
See LICENSE.TXT for the full license.
-->
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="net.sirkles.plugins.CordovaAudioManager"
version="1.0.0">
<name>CordovaAudioManager</name>
<description>
Manages and plays audio from JavaScript without platform limitations.
</description>
<author>Josh Kennedy</author>
<license>University of Illinois/NCSA License</license>
<asset src="www/CordovaAudioManager.js" target="plugins/CordovaAudioManager.js" />
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- Android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="plugins">
<plugin name="CordovaAudioManager" value="net.sirkles.plugins.CordovaAudioManager"/>
</config-file>
<source-file src="src/android/net/sirkles/plugins/CordovaAudioManager/AndroidAudioManager.java"
target-dir="src/net/sirkles/plugins" />
</platform>
<!-- iOS (not implemented yet!) -->
<!--
<platform name="ios">
<config-file target="config.xml" parent="/*/plugins">
<plugin name="Echo" value="Echo" onload="true" />
</config-file>
<config-file target="config.xml" parent="/widget">
<feature name="Echo">
<param name="ios-package" value="Echo"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/Echo.h" />
<source-file src="src/ios/Echo.m" />
</platform>
-->
</plugin>