-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathplugin.xml
More file actions
36 lines (28 loc) · 1.04 KB
/
plugin.xml
File metadata and controls
36 lines (28 loc) · 1.04 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
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="CDVVideo"
version="3.0.1">
<name>CDVVideo</name>
<description>This plugin allows you to play videos.</description>
<license>MIT</license>
<keywords>cordova,video,videos,movies</keywords>
<js-module src="www/CDVVideo.js" name="CDVVideo">
<clobbers target="plugins.CDVVideo" />
</js-module>
<!-- android -->
<platform name="android">
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CDVVideo">
<param name="ios-package" value="CDVVideo"/>
</feature>
</config-file>
<source-file src="src/ios/CDVVideo.m" />
<source-file src="src/ios/MovieViewController.m" />
<header-file src="src/ios/CDVVideo.h" />
<header-file src="src/ios/MovieViewController.h" />
<framework src="MediaPlayer.framework" />
</platform>
</plugin>