forked from Festify/cordova-external-screen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
26 lines (23 loc) · 1.13 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="rocks.festify.cordova-external-screen" version="1" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>cordova-external-screen</name>
<hook type="before_plugin_install" src="package.sh" />
<js-module name="cordova-external-screen" src="www/build/cordova-external-screen.js">
<merges target="cordova.plugins"/>
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="ExternalScreen">
<param name="ios-package" value="CordovaExternalScreen"/>
</feature>
</config-file>
<source-file src="src/ios/CordovaExternalScreen.m"/>
<header-file src="src/ios/CordovaExternalScreen.h"/>
<source-file src="src/ios/CordovaEventEmitter.m"/>
<header-file src="src/ios/CordovaEventEmitter.h"/>
<source-file src="src/ios/ScreenNotificationDelegate.m"/>
<header-file src="src/ios/ScreenNotificationDelegate.h"/>
<framework src="WebKit.framework" />
</platform>
</plugin>