forked from dpa99c/cordova-custom-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
26 lines (20 loc) · 1.07 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-custom-config"
version="1.1.8">
<name>cordova-custom-config</name>
<description>Cordova/Phonegap plugin to update platform configuration files based on preferences and config-file data defined in config.xml</description>
<author>Dave Alden</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<repo>https://github.com/dpa99c/cordova-custom-config.git</repo>
<issue>https://github.com/dpa99c/cordova-custom-config/issues</issue>
<keywords>ecosystem:cordova,cordova,phonegap,ios,android,config,configuration,plist,manifest</keywords>
<license>MIT</license>
<hook src="hooks/restoreBackups.js" type="before_prepare" />
<hook src="hooks/restoreBackups.js" type="before_plugin_uninstall" />
<hook src="hooks/applyCustomConfig.js" type="after_prepare" />
<hook src="hooks/resolveDependencies.js" type="after_plugin_install" />
</plugin>