-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugin.xml
More file actions
23 lines (19 loc) · 955 Bytes
/
plugin.xml
File metadata and controls
23 lines (19 loc) · 955 Bytes
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 id="cordova_app_version_plugin" version="0.2.7" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>getAppVersion</name>
<description>Read the version of the App from config.xml and make it available in js</description>
<license>MIT</license>
<keywords>cordova,appversion,version</keywords>
<repo>https://github.com/Binarypark/cordova_app_version_plugin.git</repo>
<issue>https://github.com/Binarypark/cordova_app_version_plugin/issues</issue>
<hook type="before_prepare" src="hooks/before_prepare/setVersionOnApp.js" />
<js-module name="getAppVersion" src="www/getAppVersion.js">
<clobbers target="cordova.plugins.version" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<info>
Don't forget to run 'npm install q-io semver'.
</info>
</plugin>