-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathplugin.xml
26 lines (22 loc) · 938 Bytes
/
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 xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="com.jamiestarke.webviewdebug"
version="1.0.8">
<name>WebView Debug</name>
<description>Enables debugging of WebViews within Android for Cordova Apps</description>
<license>Apache 2.0</license>
<keywords>cordova,debug,webview</keywords>
<engines>
<engine name="cordova-android" version=">=3.2.0" />
</engines>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebViewDebug" >
<param name="android-package" value="com.jamiestarke.webviewdebug.WebViewDebug"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/WebViewDebug.java" target-dir="src/com/jamiestarke/webviewdebug" />
</platform>
</plugin>