-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
53 lines (48 loc) · 2.32 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-inputbar"
version="0.0.1">
<name>CDVInputBar</name>
<js-module name="CDVInputBar" src="www/CDVInputBar.js">
<clobbers target="CDVInputBar" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CDVInputBar">
<param name="ios-package" value="CDVInputBar" />
<param name="onload" value="true" />
</feature>
</config-file>
<!-- Add in the plugin .swift files here -->
<resource-file src="res/ib_call.png" />
<resource-file src="res/ib_camera.png" />
<resource-file src="res/ib_gift.png" />
<resource-file src="res/ib_image.png" />
<resource-file src="res/ib_phone.png" />
<resource-file src="res/ib_location.png" />
<resource-file src="res/ib_face_normal.png" />
<resource-file src="res/ib_face_active.png" />
<resource-file src="res/ib_keyboard_normal.png" />
<resource-file src="res/ib_keyboard_active.png" />
<resource-file src="res/ib_more_normal.png" />
<resource-file src="res/ib_more_active.png" />
<resource-file src="res/ib_voice_normal.png" />
<resource-file src="res/ib_voice_active.png" />
<source-file src="src/ios/CDVInputBar.swift" />
<header-file src="src/ios/AudioConverterKit.h" />
<header-file src="src/ios/ExtAudioConverter.h" />
<source-file src="src/ios/ExtAudioConverter.m" />
<source-file src="src/ios/FDSoundActivatedRecorder.swift" />
<source-file src="src/ios/KeyboardEvent.swift" />
<source-file src="src/ios/KeyboardNotification.swift" />
<source-file src="src/ios/NSNotification+Extensions.swift" />
<header-file src="src/ios/lame.h" />
<source-file src="src/ios/SwiftSpinner.swift" />
<source-file src="src/ios/libmp3lame.a" framework="true" />
<!-- Add in the swift-support plugin by default -->
<dependency id="cordova-plugin-add-swift-support" />
<pods-config ios-min-version="11.0" use-frameworks="true" />
<pod name="Toast-Swift" spec="~> 5.0.0" />
<pod name="RappleProgressHUD" spec="~> 4.0.0" />
</platform>
</plugin>