forked from etabard/Cordova-OverAppBrowser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
executable file
·51 lines (41 loc) · 1.99 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="cordova-plugin-overappbrowser" version="1.2.0">
<name>Over App Browser</name>
<description>Render a webview over your cordova UI (you choose the position)</description>
<keywords>ios,android</keywords>
<license>MIT</license>
<author>Emmanuel Tabard</author>
<engines>
<engine name="cordova" version=">=6.0.0"/>
</engines>
<platform name="ios">
<js-module src="www/ios/OverAppBrowser.js" name="OverAppBrowser">
<clobbers target="OverAppBrowser"/>
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="OverAppBrowser">
<param name="ios-package" value="OverAppBrowser"/>
</feature>
</config-file>
<header-file src="src/ios/OverAppBrowser.h"/>
<source-file src="src/ios/OverAppBrowser.m"/>
</platform>
<platform name="android">
<js-module src="www/ios/OverAppBrowser.js" name="OverAppBrowser">
<clobbers target="OverAppBrowser"/>
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="OverAppBrowser">
<param name="android-package" value="com.lesfrancschatons.cordova.plugins.overappbrowser.OverAppBrowser"/>
</feature>
</config-file>
<source-file src="src/android/OverAppBrowser.java" target-dir="src/com/lesfrancschatons/cordova/plugins/overappbrowser"/>
<source-file src="src/android/OverAppBrowserDialog.java" target-dir="src/com/lesfrancschatons/cordova/plugins/overappbrowser"/>
<source-file src="src/android/OverAppChromeClient.java" target-dir="src/com/lesfrancschatons/cordova/plugins/overappbrowser"/>
</platform>
<platform name="browser">
<js-module src="www/iframe/OverAppBrowser.js" name="OverAppBrowser">
<clobbers target="OverAppBrowser"/>
</js-module>
</platform>
</plugin>