forked from internrocket/cordova-plugin-StatusBarColor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
23 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-recentscontrol" version="1.1.2">
<name>RecentsControl</name>
<description>Set the Recents title bar color and label in Android 5.0+</description>
<license>MIT</license>
<keywords>android,recents,color,label,description</keywords>
<engines>
<engine name="cordova" version=">=3.7.1"/>
</engines>
<js-module src="www/recentscontrol.js" name="recentscontrol">
<clobbers target="window.RecentsControl" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="RecentsControl">
<param name="android-package" value="net.flashpointcs.cordova.recentscontrol.RecentsControl" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/RecentsControl.java" target-dir="src/net/flashpointcs/cordova/recentscontrol" />
</platform>
</plugin>