-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
22 lines (22 loc) · 857 Bytes
/
Copy pathplugin.xml
File metadata and controls
22 lines (22 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="at.mindstorm.cordova.apputils" version="0.1.0">
<name>AppUtils</name>
<author>Paul Cervenka</author>
<description>Cordova App Utils Plugin: IdleTimer, BundleInfo, OpenWith, SocialShare</description>
<keywords>utils, timer, idle, idletimer, bundleinfo, bundle, openwith, social, share</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/apputils.js" name="AppUtils">
<clobbers target="apputils" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="AppUtils">
<param name="ios-package" value="AppUtils" />
</feature>
</config-file>
<header-file src="src/ios/AppUtils.h" />
<source-file src="src/ios/AppUtils.m" />
</platform>
</plugin>