-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
30 lines (27 loc) · 1.33 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-kunder-android-shortcuts"
version="1.0.0">
<name>cordova-plugin-kunder-android-shortcuts</name>
<description>Plugin Cordova que proporciona el mecanismo para definir shortcuts estáticos fácilmente.</description>
<author>kunder SpA</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">
<hook type="before_prepare" src="scripts/001_create_shortcuts_files.js"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AndroidShortcutsPlugin" >
<param name="android-package" value="cl.kunder.androidshortcuts.AndroidShortcutsPlugin"/>
</feature>
</config-file>
<source-file src="src/android/cl/kunder/androidshortcuts/AndroidShortcutsPlugin.java" target-dir="src/cl/kunder/androidshortcuts" />
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name=".ShortcutHelperActivity" android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
</config-file>
</platform>
</plugin>