-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.xml
61 lines (54 loc) · 3.69 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
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.mwaysolutions.cordova.webviewplugin"
version="2.0.1">
<name>Webview</name>
<description>Cordova Webview Plugin</description>
<license></license>
<keywords>cordova, webview</keywords>
<repo>[email protected]:systeminfo-ios/cordova-webview-plugin.git</repo>
<js-module src="www/webview-plugin.js" name="webviewplugin">
<clobbers target="webview" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="WebViewPlugin">
<param name="android-package" value="com.mwaysolutions.cordova.webviewplugin.WebViewPlugin"/>
</feature>
</config-file>
<source-file src="src/android/WebViewPlugin.java" target-dir="src/com/mwaysolutions/cordova/webviewplugin"/>
<source-file src="src/android/InAppBrowserDialog.java" target-dir="src/com/mwaysolutions/cordova/webviewplugin" />
<source-file src="src/android/InAppChromeClient.java" target-dir="src/com/mwaysolutions/cordova/webviewplugin" />
<!-- drawable src/android/resources -->
<resource-file src="src/android/res/drawable-hdpi/ic_action_next_item.png" target="res/drawable-hdpi/ic_action_next_item.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_action_next_item.png" target="res/drawable-mdpi/ic_action_next_item.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_action_next_item.png" target="res/drawable-xhdpi/ic_action_next_item.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_next_item.png" target="res/drawable-xxhdpi/ic_action_next_item.png" />
<resource-file src="src/android/res/drawable-hdpi/ic_action_previous_item.png" target="res/drawable-hdpi/ic_action_previous_item.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_action_previous_item.png" target="res/drawable-mdpi/ic_action_previous_item.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_action_previous_item.png" target="res/drawable-xhdpi/ic_action_previous_item.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_previous_item.png" target="res/drawable-xxhdpi/ic_action_previous_item.png" />
<resource-file src="src/android/res/drawable-hdpi/ic_action_refresh.png" target="res/drawable-hdpi/ic_action_refresh.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_action_refresh.png" target="res/drawable-mdpi/ic_action_refresh.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_action_refresh.png" target="res/drawable-xhdpi/ic_action_refresh.png" />
<resource-file src="src/android/res/drawable-xxhdpi/ic_action_refresh.png" target="res/drawable-xxhdpi/ic_action_refresh.png" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WebViewPlugin">
<param name="ios-package" value="WebViewPlugin"/>
</feature>
</config-file>
<header-file src="src/ios/WebViewPlugin.h" />
<source-file src="src/ios/WebViewPlugin.m" />
<header-file src="src/ios/WebViewController.h" />
<source-file src="src/ios/WebViewController.m" />
<resource-file src="src/ios/images/[email protected]" target="src/ios/images/[email protected]" />
<resource-file src="src/ios/images/[email protected]" target="src/ios/images/[email protected]" />
<resource-file src="src/ios/images/[email protected]" target="src/ios/images/[email protected]" />
<resource-file src="src/ios/images/[email protected]" target="src/ios/images/[email protected]" />
</platform>
</plugin>