-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
22 lines (22 loc) · 1.04 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-externallinks" version="0.1.1">
<name>Externalinks</name>
<description>Cordova Plugin Externalinks</description>
<license>Apache 2.0</license>
<keywords>cordova,device, external, links, iframe</keywords>
<repo>https://github.com/EnricoKestenholz/cordova-plugin-externallinks</repo>
<issue>https://github.com/EnricoKestenholz/cordova-plugin-externallinks/issues</issue>
<js-module src="www/externallinks.js" name="externallinks">
<clobbers target="externallinks" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ExternalLinks">
<param name="ios-package" value="CDVExternalLinks"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVExternalLinks.h" />
<source-file src="src/ios/CDVExternalLinks.m" />
</platform>
</plugin>