-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
53 lines (44 loc) · 1.72 KB
/
plugin.xml
File metadata and controls
53 lines (44 loc) · 1.72 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
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.opuslogica.plugins.OLIRecorder"
version="1.0.0">
<name>OLIRecorder</name>
<description>OLI Recorder Backend for Ionic and Cordova</description>
<license>Apache 2.0</license>
<keywords>Recorder</keywords>
<js-module src="www/OLIRecorder.js" name="OLIRecorder">
<clobbers target="window.OLIRecorder" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="OLIRecorder" >
<param name="ios-package" value="OLIRecorder"/>
</feature>
</config-file>
<config-file target="*-Info.plist" parent="UIBackgroundModes">
<array>
<string>audio</string>
</array>
</config-file>
<header-file src="src/ios/OLIRecorder.h"/>
<source-file src="src/ios/OLIRecorder.m"/>
<header-file src="src/ios/AQLevelMeter.h"/>
<source-file src="src/ios/AQLevelMeter.m"/>
<header-file src="src/ios/GLLevelMeter.h"/>
<source-file src="src/ios/GLLevelMeter.m"/>
<header-file src="src/ios/LevelMeter.h"/>
<source-file src="src/ios/LevelMeter.m"/>
<header-file src="src/ios/MeterTable.h"/>
<source-file src="src/ios/MeterTable.m"/>
<header-file src="src/ios/AudioStreamingRecorder.h"/>
<source-file src="src/ios/AudioStreamingRecorder.m"/>
<framework src="UIKit.framework"/>
<framework src="Accelerate.framework"/>
<framework src="AVFoundation.framework"/>
<framework src="opengles.framework"/>
<framework src="QuartzCore.framework"/>
</platform>
</plugin>