-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
26 lines (23 loc) · 950 Bytes
/
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 xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-app-shortcuts"
version="1.0.0">
<name>App Shortcuts</name>
<description>Plugin that created pinned android shortcuts on users homescreen</description>
<author>Mathieu Maas</author>
<keywords>plugin,shortcuts,android</keywords>
<engines>
<engine name="cordova" version=">=6.0.0" />
</engines>
<js-module src="www/AndroidShortcutsPlugin.js" name="AndroidShortcutsPlugin">
<merges target="AndroidShortcutsPlugin" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AndroidShortcutsPlugin" >
<param name="android-package" value="fc.shortcuts.AndroidShortcutsPlugin"/>
</feature>
</config-file>
<source-file src="src/android/AndroidShortcutsPlugin.java" target-dir="src/fc/shortcuts" />
</platform>
</plugin>