-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
26 lines (25 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="com.darktalker.cordova.webviewsetting" version="0.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" >
<name>ViewportFix</name>
<description>cordova plugin to fix viewport in android</description>
<license>MIT</license>
<keywords>cordova,viewport,autoplay</keywords>
<repo>https://github.com/gitawego/cordova-webview-setting</repo>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/WebviewSetting.js" name="WebviewSetting">
<clobbers target="plugin.webviewSetting"/>
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebviewSetting">
<param name="android-package" value="com.darktalker.cordova.webviewsetting.WebviewSetting" />
</feature>
</config-file>
<source-file src="src/android/WebviewSetting.java" target-dir="src/com/darktalker/cordova/webviewsetting" />
</platform>
</plugin>