-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
33 lines (27 loc) · 1009 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
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.orangeguava.nativenav"
version="0.0.1">
<name>NativeNav</name>
<description>NativeNav Plugin</description>
<license>MIT</license>
<keywords>cordova,ios,native,uinavigationbar</keywords>
<engines>
<engine name="cordova" version=">=3.2.0" />
</engines>
<js-module src="www/native-nav.js" name="native-nav">
<clobbers target="window.NativeNav" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="NativeNav">
<param name="ios-package" value="NativeNav" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/NativeNav.h" />
<source-file src="src/ios/NativeNav.m" />
</platform>
</plugin>