forked from vincentf06/cordova-brightcove-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
68 lines (58 loc) · 2.99 KB
/
Copy pathplugin.xml
File metadata and controls
68 lines (58 loc) · 2.99 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
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
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-brightcove-player" version="1.0.0">
<name>CordovaBrightcovePlayer</name>
<description>Brightcove video player cordova plugin</description>
<author>Vincent Fu</author>
<license>Apache 2.0</license>
<keywords>cordova,brightcove,videoplayer,player</keywords>
<js-module src="www/videoPlayer.js" name="videoPlayer">
<clobbers target="cordova.plugins.videoPlayer" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BrightcovePlayer">
<param name="ios-package" value="BrightcovePlayer" onload="true"/>
</feature>
</config-file>
<framework src="src/ios/BrightcovePlayerSDK.framework" custom="true" link="true"/>
<header-file src="src/ios/bridging-header.h" />
<source-file src="src/ios/BrightcovePlayer.swift" />
<source-file src="src/ios/PlayerViewController.swift" />
<resource-file src="src/ios/BrightcovePlayer.storyboard" />
<resource-file src="src/ios/back.png" />
<resource-file src="src/ios/bcovpuiiconfont.ttf" />
<framework src="AVFoundation.framework" />
<framework src="CoreMedia.framework" />
<framework src="CoreMotion.framework" />
<framework src="GLKit.framework" />
<framework src="MediaPlayer.framework" />
<framework src="MediaAccessibility.framework" />
<framework src="SafariServices.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="WebKit.framework" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BrightcovePlayer">
<param name="android-package" value="com.brightcove.player.BrightcovePlayer" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="application">
<activity
android:name="com.brightcove.player.BrightcoveActivity"
android:configChanges="orientation|screenSize"
android:launchMode="singleTask"
android:alwaysRetainTaskState="true"
android:exported="true"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
</activity>
</config-file>
<source-file src="src/android/BrightcovePlayer.java" target-dir="src/com/brightcove/player" />
<source-file src="src/android/BrightcoveActivity.java" target-dir="src/com/brightcove/player" />
<source-file src="src/android/CordovaBrightcoveCallbackUtil.java" target-dir="src/com/brightcove/player" />
<source-file src="src/android/player.xml" target-dir="res/layout/" />
<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>