-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
22 lines (18 loc) · 778 Bytes
/
plugin.xml
File metadata and controls
22 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="de.dbagel.videocopier" version="0.2">
<name>VideoCopier</name>
<description>Cordova VideoCopier Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,video,html5</keywords>
<asset src="www/videocopier.js" target="js/videocopier.js"/>
<platform name="android">
<!-- Add to res/xml/config.xml -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="VideoCopier">
<param name="android-package" value="de.dbagel.videocopier.VideoCopier"/>
</feature>
</config-file>
<!-- Move the java into the platform -->
<source-file src="src/android/VideoCopier.java" target-dir="src/de/dbagel/videocopier" />
</platform>
</plugin>