-
Notifications
You must be signed in to change notification settings - Fork 9
/
plugin.xml
24 lines (23 loc) · 1.26 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.changeit.android2.multitouch" version="0.0.1">
<name>MultiTouchAndroid2</name>
<description>Enable Multitouch gestures on Android 2.2+ [Based on WebView-MultiTouch-Polyfill]</description>
<name>Android 2.2+ Multitouch</name>
<license>Apache 2.0</license>
<keywords>cordova,multitouch,gingerbread,froyo</keywords>
<js-module src="libs/wmp.js" name="multitouch">
<clobbers target="multitouch" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MultiTouchAndroid2">
<param name="android-package" value="org.changeit.android2.MultiTouchView" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/com/changeit/wmpolyfill/WebClient.java" target-dir="src/com/changeit/wmpolyfill" />
<source-file src="src/com/changeit/wmpolyfill/Cordova3WebClient.java" target-dir="src/com/changeit/wmpolyfill" />
<source-file src="src/org/changeit/android2/MultiTouchView.java" target-dir="src/org/changeit/android2" />
</platform>
</plugin>