forked from taroquu/CordovaNavbarPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
32 lines (25 loc) · 909 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
<?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="cordova.plugins.navbar"
version="1.0.0">
<name>NavBar</name>
<description>
A plugin which resizes the cordova web view of a windows phone 8.1 application as the nav bar is shown/hidden.
</description>
<author>Martin Cassidy</author>
<js-module src="www/NavBar.js" name="NavBar">
<clobbers target="navBar" />
</js-module>
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="NavBar">
<param name="wp-package" value="NavBar"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<source-file src="src/wp8/NavBar.cs" />
<source-file src="src/wp8/VisibleBoundsExtensions.cs" />
</platform>
</plugin>