-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
35 lines (26 loc) · 842 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
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="autarky.plugin.audioEncode"
version="1.1.0">
<name>AudioEncode</name>
<description>
Plugin for iOS to encode wav to m4a
</description>
<license>Apache License 2.0</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/AudioEncode.js" name="AudioEncode">
<clobbers target="window.plugins.encodeAudio" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="AudioEncode">
<param name="ios-package" value="AudioEncode"/>
</feature>
</config-file>
<header-file src="src/ios/AudioEncode.h"/>
<source-file src="src/ios/AudioEncode.m"/>
</platform>
</plugin>