-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
27 lines (27 loc) · 1017 Bytes
/
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
27
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.photokandy.nativecontrols"
version="1.1.0">
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<name>Native Controls</name>
<description>Native Controls (alpha; iOS 7 only for now)</description>
<author>Kerri Shotts</author>
<keywords>native, controls, ios, ios7</keywords>
<license>MIT</license>
<js-module src="www/PKNativeControls.js" name="PKNativeControls">
<clobbers target="window.nativeControls" />
</js-module>
<platform name="ios">
<!-- ios-specific elements -->
<header-file src="src/ios/PKNativeControls.h" />
<source-file src="src/ios/PKNativeControls.m" />
<config-file target="config.xml" parent="/widget/plugins">
<feature name="PKNativeControls">
<param name="ios-package" value="PKNativeControls"/>
</feature>
</config-file>
</platform>
</plugin>