forked from phonegap/phonegap-plugin-fast-canvas
-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
34 lines (28 loc) · 1.49 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
<?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="com.piqnt.fastcontext" version="0.1.3">
<name>FastContext</name>
<description>Android Native 2D Context for HTML5 Canvas</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FastContext">
<param name="android-package" value="com.piqnt.fastcontext.FastContextPlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
</config-file>
<js-module src="www/FastContext.js" name="FastContext">
<clobbers target="FastContext" />
</js-module>
<source-file src="Android/src/com/piqnt/fastcontext/FastContextPlugin.java" target-dir="src/com/piqnt/fastcontext/" />
<source-file src="Android/src/com/piqnt/fastcontext/FastContextView.java" target-dir="src/com/piqnt/fastcontext/" />
<source-file src="Android/src/com/adobe/plugins/FastCanvasJNI.java" target-dir="src/com/adobe/plugins/" />
<source-file src="Android/src/com/adobe/plugins/FastCanvasTextureDimension.java" target-dir="src/com/adobe/plugins/" />
<source-file src="Android/libs/armeabi/libFastCanvasJNI.so" target-dir="libs/armeabi/" />
</platform>
</plugin>