forked from EddyVerbruggen/VideoCapturePlus-PhoneGap-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
executable file
·65 lines (50 loc) · 2.44 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
58
59
60
61
62
63
64
65
<?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="nl.x-services.plugins.videocaptureplus"
version="1.3.0">
<name>VideoCapturePlus</name>
<description>
If you want HD video recording, starting with the front camera by default, or
use an (transparent PNG) overlay during recording (iOS only feature)? Look no further!
All options of the default plugin are available as well, so you can still set a
duration limit etc.
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<dependency id="cordova-plugin-compat" version="^1.1.0" />
<js-module src="www/VideoCapturePlus.js" name="VideoCapturePlus">
<clobbers target="window.plugins.videocaptureplus"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="VideoCapturePlus">
<param name="ios-package" value="VideoCapturePlus"/>
</feature>
</config-file>
<header-file src="src/ios/VideoCapturePlus.h"/>
<source-file src="src/ios/VideoCapturePlus.m"/>
<framework src="CoreGraphics.framework"/>
<framework src="MobileCoreServices.framework"/>
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="VideoCapturePlus">
<param name="android-package" value="nl.xservices.plugins.videocaptureplus.VideoCapturePlus"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
<source-file src="src/android/nl/xservices/plugins/videocaptureplus/VideoCapturePlus.java"
target-dir="src/nl/xservices/plugins/videocaptureplus"/>
<source-file src="src/android/nl/xservices/plugins/videocaptureplus/FileHelper.java"
target-dir="src/nl/xservices/plugins/videocaptureplus"/>
<source-file src="src/android/nl/xservices/plugins/videocaptureplus/xml/provider_paths2.xml" target-dir="res/xml" />
</platform>
</plugin>