This repository has been archived by the owner on Apr 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathplugin.xml
executable file
·64 lines (50 loc) · 2.27 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.lesfrancschatons.cordova.plugins.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=">=3.0.0" />
</engines>
<!-- ios -->
<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" />
<!-- <config-file target="config.xml" parent="/*">
<feature name="OverAppBrowser">
<param name="android-package" value="OverAppBrowser"/>
</feature>
</config-file> -->
</platform>
<!-- browser -->
<platform name="browser">
<js-module src="www/iframe/OverAppBrowser.js" name="OverAppBrowser">
<clobbers target="OverAppBrowser" />
</js-module>
</platform>
</plugin>