-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
25 lines (23 loc) · 1.04 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
<?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="com.byemisys.cordova.FamocoLaser"
version="1.0.1">
<name>Famoco Laser Plugin</name>
<description>A plugin to use the Famoco laser (Motorola 4000)</description>
<license>Apache 2.0</license>
<keywords>cordova,plugin,famoco, laser, motorola, 4000</keywords>
<repo>https://github.com/Legenyes/cordova-plugin-famocolaser.git</repo>
<issue>https://github.com/Legenyes/cordova-plugin-famocolaser/issues</issue>
<js-module src="www/plugin.js" name="FamocoLaser">
<clobbers target="FamocoLaser" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="FamocoLaser" >
<param name="android-package" value="com.byemisys.cordova.FamocoLaser"/>
</feature>
</config-file>
<source-file src="src/android/FamocoLaser.java" target-dir="src/com/byemisys/cordova"/>
</platform>
</plugin>