-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
executable file
·32 lines (27 loc) · 1.15 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
<?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.android.tools.suspend"
version="0.1.2">
<name>Android Suspend</name>
<description>Use this plugin to suspend your app. Just in case you want your back button to switch to home screen.</description>
<author>Tuan Nguyen</author>
<keywords>suspend,back button</keywords>
<repo>https://github.com/lamerchun/org.android.tools.suspend</repo>
<license>MIT License</license>
<!-- android -->
<platform name="android">
<js-module src="www/suspend.js" name="suspend">
<clobbers target="window.plugins.Suspend" />
</js-module>
<!-- Cordova >= 3.0.0 -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Suspend">
<param name="android-package" value="org.android.tools.Suspend"/>
</feature>
</config-file>
<!-- cordova plugin src files -->
<source-file src="src/org/android/tools/Suspend.java" target-dir="src/org/android/tools/" />
</platform>
</plugin>