forked from newforestcicada/audiorecorder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
75 lines (67 loc) · 4.18 KB
/
plugin.xml
File metadata and controls
75 lines (67 loc) · 4.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="info.newforestcicada.audiorecorder" version="0.1.0">
<name>AudioRecorder</name>
<description>AudioRecorder Plugin</description>
<author>New Forest Cicada Project</author>
<js-module src="www/audioRecorder-plugin.js" name="audioRecorder">
<clobbers target="audioRecorder" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="AudioRecorder">
<param name="ios-package" value="CordovaAudioRecorder"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<framework src="AudioToolbox.framework" />
<framework src="CoreAudio.framework" />
<header-file src="src/ios/AudioRecorder.h" />
<header-file src="src/ios/Sonogram.h" />
<header-file src="src/ios/DeviceType.h" />
<header-file src="src/ios/CordovaAudioRecorder.h" />
<header-file src="src/ios/GoertzelFilter.h" />
<header-file src="src/ios/HeterodyneDetector.h" />
<header-file src="src/ios/HighPassFilter.h" />
<header-file src="src/ios/KalmanFilter.h" />
<header-file src="src/ios/LowPassFilter.h" />
<header-file src="src/ios/RecordingBuffer.h" />
<header-file src="src/ios/Settings.h" />
<source-file src="src/ios/AudioRecorder.m" />
<source-file src="src/ios/Sonogram.c" />
<source-file src="src/ios/DeviceType.m" />
<source-file src="src/ios/CordovaAudioRecorder.m" />
<source-file src="src/ios/GoertzelFilter.c" />
<source-file src="src/ios/HeterodyneDetector.c" />
<source-file src="src/ios/HighPassFilter.c" />
<source-file src="src/ios/KalmanFilter.c" />
<source-file src="src/ios/LowPassFilter.c" />
<source-file src="src/ios/RecordingBuffer.c" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AudioRecorder">
<param name="android-package" value="info.newforestcicada.audiorecorder.plugin.RecorderPlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
</config-file>
<config-file target="res/values/strings.xml" parent="/*">
<string name="MEANS">distribution_means</string>
<string name="VARS">distribution_variances</string>
</config-file>
<source-file src="src/android/Kalman.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/Baselines.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/AudioAnalyser.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/Goertzel.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/RecorderPlugin.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/Spectrogram.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/Heterodyne.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/Filter.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/HighPassFilter.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
<source-file src="src/android/LowPassFilter.java" target-dir="src/info/newforestcicada/audiorecorder/plugin" />
</platform>
</plugin>