forked from victorteokw/cordova-plugin-ios-segue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
34 lines (27 loc) · 1.08 KB
/
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
34
<?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="cheung.hoi.yu.segue"
version="1.0.2">
<name>Segue</name>
<description>A iOS Performing Segue Plugin for Cordova 3.x.x, https://github.com/cheunghy/cordova-plugin-ios-segue</description>
<license>Apache 2.0</license>
<author>Cheung Hoi Yu</author>
<keywords>cordova,segue,ios,navigation,storyboard</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/segue.js" name="Segue">
<clobbers target="segue" />
</js-module>
<!-- iOS only -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Segue">
<param name="ios-package" value="KYPushSeguePlugin" />
</feature>
</config-file>
<header-file src="src/ios/KYPushSeguePlugin.h" />
<source-file src="src/ios/KYPushSeguePlugin.m" />
</platform>
</plugin>