-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
31 lines (24 loc) · 1.06 KB
/
Copy pathplugin.xml
File metadata and controls
31 lines (24 loc) · 1.06 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
<?xml version='1.0' encoding='utf-8'?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-iosvideouploader"
version="0.0.1">
<name>iOSVideoUploader</name>
<description>Upload Video files Using UIImagePicker</description>
<author>Eugene/Bogdan</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<dependency id="cordova-plugin-add-swift-support" version="1.6.1"/>
<js-module name="iOSVideoUploader" src="www/iOSVideoUploader.js">
<clobbers target="window.plugins.iOSVideoUploader" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="iOSVideoUploader">
<param name="ios-package" value="iOSVideoUploader" />
</feature>
</config-file>
<source-file src="src/ios/iOSVideoUploader.swift" />
</platform>
</plugin>