-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathplugin.xml
More file actions
85 lines (71 loc) · 3.06 KB
/
Copy pathplugin.xml
File metadata and controls
85 lines (71 loc) · 3.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-jb-plugin-panframe"
version="0.1.0">
<name>Panframe</name>
<description>Cordova PanFrame(http://www.panframe.com/) Plugin</description>
<js-module src="www/cdv-jb-panframe-plugin.js" name="PanframePlugin">
<clobbers target="panframePlugin" />
</js-module>
<!-- android -->
<platform name="android">
<!-- Play Services... -->
<dependency id="cordova-plugin-android-support-v4" />
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<!-- Activity Entries -->
<activity android:name="com.jb.plugin.panframe.SimpleStreamPlayerActivity" android:screenOrientation="landscape" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
</config-file>
<!-- PanframePlugin JS -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="PanframePlugin">
<param name="android-package" value="com.jb.plugin.panframe.PanframePlugin" />
</feature>
</config-file>
<!-- PAN Frame Library -->
<lib-file src="src/android/libs/panframe-1.9.jar" />
<!-- Plugin File -->
<source-file src="src/android/PanframePlugin.java" target-dir="src/com/jb/plugin/panframe" />
<!-- PANFrame Video View Activity -->
<source-file src="src/android/SimpleStreamPlayerActivity.java" target-dir="src/com/jb/plugin/panframe" />
<!-- Layouts -->
<source-file src="src/android/simple_stream_player.xml" target-dir="res/layout"/>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="PanframePlugin">
<param name="ios-package" value="CDVPanframePlugin" />
</feature>
</config-file>
<resource-file src="src/ios/frameworks/Settings.bundle" />
<header-file src="src/ios/CDVPanframePlugin.h" />
<source-file src="src/ios/CDVPanframePlugin.m" />
<header-file src="src/ios/SimplePlayerViewController.h" />
<source-file src="src/ios/SimplePlayerViewController.m" />
<!-- res files -->
<resource-file src="src/ios/PlayerStoryboard.storyboard" />
<!-- Dependencies -->
<framework src="UIKit.framework" />
<framework src="AVFoundation.framework" />
<framework src="CoreMedia.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CoreLocation.framework" />
<framework src="CoreMotion.framework" />
<framework src="CoreVideo.framework" />
<framework src="AssetsLibrary.framework" />
<framework src="Foundation.framework" />
<framework src="MobileCoreServices.framework" />
<framework src="QuartzCore.framework" />
<framework src="Security.framework" />
<framework src="OpenGLES.framework" />
<framework src="AVFoundation.Frameworks" />
<framework src="SystemConfiguration.framework" />
<framework src="src/ios/frameworks/Panframe.framework" custom="true" />
</platform>
</plugin>