-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
18 lines (18 loc) · 840 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="org.lisp.ecl" version="0.0.1">
<name>CordovaEcl</name>
<description>Cordova Embedded Common Lisp Plugin</description>
<keywords>common lisp, cordova, embedded common lisp</keywords>
<js-module name="ecl" src="www/ecl.js">
<clobbers target="lisp"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="CordovaEcl">
<param name="android-package" value="org.lisp.ecl.CordovaEcl"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"/>
<source-file src="src/android/CordovaEcl.java" target-dir="src/org/lisp/ecl/CordovaEcl"/>
</platform>
</plugin>