-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
54 lines (48 loc) · 2.53 KB
/
plugin.xml
File metadata and controls
54 lines (48 loc) · 2.53 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="nire.nuance" version="0.1.0">
<name>Nuance Dragon Dictate Plugin</name>
<description>Cordova Nuance Ndev Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,voice_recognition</keywords>
<js-module src="www/nuancespeechkit.js" name="NuancePlugin">
<clobbers target="NuancePlugin" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="NuancePlugin">
<param name="ios-package" value="NuancePlugin"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/NuancePlugin.h" />
<source-file src="src/ios/NuancePlugin.m" compiler-flags="-fno-objc-arc" />
<header-file src="src/ios/Credentials.h" />
<source-file src="src/ios/Credentials.m" />
<framework src="AssetsLibrary.framework" />
<framework src="Security.framework" />
<framework src="Foundation.framework" />
<framework src="CoreMedia.framework" />
<framework src="MediaPlayer.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="CFNetwork.framework" />
<framework src="AVFoundation.framework" />
<framework src="AudioToolbox.framework" />
<framework src="CoreGraphics.framework" />
<framework src="libs/ios/SpeechKit.framework" custom="true" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="NuancePlugin" >
<param name="android-package" value="nire.nuance.NuancePlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.RECORD_AUDIO" />
</config-file>
<source-file src="src/android/CredentialsParser.java" target-dir="src/nire/nuance" />
<source-file src="src/android/NuancePlugin.java" target-dir="src/nire/nuance" />
<source-file src="libs/android/nmdp_speech_kit.jar" target-dir="libs" />
<source-file src="libs/android/armeabi/libnmsp_speex.so" target-dir="libs/armeabi" />
</platform>
</plugin>