forked from ffMathy/cordova-plugin-video-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
57 lines (45 loc) · 2.17 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
54
55
56
57
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-video-editor" version="1.1.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>VideoEditor</name>
<description>A plugin to assist in video editing tasks</description>
<keywords>cordova,video,editing,transcoding,encoding</keywords>
<repo>https://github.com/jbavari/cordova-plugin-video-editor.git</repo>
<license>MIT for iOS, GPL for Android, Apache 2.0 for Windows</license>
<js-module name="VideoEditor" src="www/VideoEditor.js">
<clobbers target="VideoEditor" />
</js-module>
<js-module name="VideoEditorOptions" src="www/VideoEditorOptions.js">
<clobbers target="VideoEditorOptions" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="VideoEditor">
<param name="android-package" value="org.apache.cordova.videoeditor.VideoEditor" />
</feature>
</config-file>
<lib-file src="src/android/libs/editvideo.jar" />
<!-- add plugin class -->
<source-file src="src/android/VideoEditor.java" target-dir="src/org/apache/cordova/videoeditor" />
<source-file src="src/android/CustomAndroidFormatStrategy.java" target-dir="src/org/apache/cordova/videoeditor" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="VideoEditor">
<param name="ios-package" value="VideoEditor"/>
</feature>
</config-file>
<header-file src="src/ios/VideoEditor.h" />
<source-file src="src/ios/VideoEditor.m" />
<header-file src="src/ios/SDAVAssetExportSession.h" />
<source-file src="src/ios/SDAVAssetExportSession.m" />
<framework src="AssetsLibrary.framework" />
<framework src="AVFoundation.framework" />
<framework src="MediaPlayer.framework" />
<framework src="CoreVideo.framework" />
</platform>
</plugin>