-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (21 loc) · 1.13 KB
/
plugin.xml
File metadata and controls
26 lines (21 loc) · 1.13 KB
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="com.mostlyepic.secondary-icon"
version="0.0.4">
<name>SecondaryIconPlugin</name>
<description>Secondary Icon Plugin for Phonegap Build applications</description>
<license>MIT</license>
<keywords>cordova,pgb,phonegap,build,icon,res</keywords>
<repo>https://github.com/kentmw/secondary-icon.git</repo>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- android -->
<platform name="android">
<!-- drawable src/android/resources -->
<resource-file src="src/android/res/drawable-hdpi/secondary_icon.png" target="res/drawable-hdpi/secondary_icon.png" />
<resource-file src="src/android/res/drawable-mdpi/secondary_icon.png" target="res/drawable-mdpi/secondary_icon.png" />
<resource-file src="src/android/res/drawable-xhdpi/secondary_icon.png" target="res/drawable-xhdpi/secondary_icon.png" />
<resource-file src="src/android/res/drawable-xxhdpi/secondary_icon.png" target="res/drawable-xxhdpi/secondary_icon.png" />
</platform>
</plugin>