-
Notifications
You must be signed in to change notification settings - Fork 37
/
plugin.xml
62 lines (47 loc) · 1.89 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-wizviewmanager"
version="1.4.0">
<name>WizViewManager</name>
<description>This plugin allows you to create and control native UIWebViews.</description>
<author>Ally Ogilvie - [email protected]</author>
<keywords>webview, view, wizcorp, wizard</keywords>
<engines>
<engine name="cordova" version=">=2.6.0" />
</engines>
<license>MIT</license>
<js-module src="www/wizViewManager.js" name="WizViewManager">
<clobbers target="window.wizViewManager" />
</js-module>
<js-module src="www/wizViewMessenger.js" name="WizViewMessenger">
<clobbers target="window.wizViewMessenger" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WizViewManager">
<param name="ios-package" value="WizViewManager"/>
<param name="onload" value="true" />
</feature>
</config-file>
<!-- Plugin files -->
<header-file src="src/ios/WizViewManager.h" />
<source-file src="src/ios/WizViewManager.m" compiler-flags="-fno-objc-arc" />
<header-file src="src/ios/WizWebView.h" />
<source-file src="src/ios/WizWebView.m" compiler-flags="-fno-objc-arc" />
<!-- Logger -->
<source-file src="src/ios/WizDebugLog.h" compiler-flags="-fno-objc-arc" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WizViewManager" >
<param name="android-package" value="jp.wizcorp.wizviewmanager.WizViewManager"/>
<url-filter value="wizpostmessage://"/>
</feature>
</config-file>
<source-file src="src/android/WizViewManager.java" target-dir="src/jp/wizcorp/wizviewmanager"/>
<source-file src="src/android/WizWebView.java" target-dir="src/jp/wizcorp/wizviewmanager"/>
</platform>
</plugin>