-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathplugin.xml
More file actions
33 lines (33 loc) · 1.19 KB
/
Copy pathplugin.xml
File metadata and controls
33 lines (33 loc) · 1.19 KB
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:android="http://schemas.android.com/apk/res/android" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" id="cordova-plugin-openurl" version="0.0.1">
<name>Open URL</name>
<description>Open URL like prefs:</description>
<author>Rand Dusing</author>
<keywords>ios,cordova,open,url</keywords>
<license>MIT</license>
<js-module src="www/OpenURL.js" name="OpenURL">
<clobbers target="window.openURL" />
</js-module>
<preference name="URL_SCHEME" />
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="OpenURL">
<param name="ios-package" value="OpenURL" />
</feature>
</config-file>
<header-file src="src/ios/OpenURL.h" />
<source-file src="src/ios/OpenURL.m" />
<config-file target="*-Info.plist" parent="CFBundleURLTypes">
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>$URL_SCHEME</string>
</array>
</dict>
</array>
</config-file>
</platform>
</plugin>