-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
32 lines (27 loc) · 1.09 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="nl.geckotech.cordova.plugins.external-screen"
version="1.0.0">
<name>ExternalScreen iOS</name>
<description>
This plugin allows you to use an external screen on iOS devices using either AirPlay or a VGA cable adapter.
The external screen uses a UIWebView, that is controlled via Javascript APIs.
This plugin is originally by Andrew Trice.
Ported/enhanced for PhoneGap 3.0 plugman by pearj and mxparajuli.
Updated for Cordova 6.x by matthijsbierman.
</description>
<license>MIT</license>
<js-module src="www/external-screen.js" name="ExternalScreen">
<clobbers target="ExternalScreen" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CDVExternalScreen">
<param name="ios-package" value="CDVExternalScreen"/>
</feature>
</config-file>
<header-file src="src/ios/CDVExternalScreen.h"/>
<source-file src="src/ios/CDVExternalScreen.m"/>
</platform>
</plugin>