forked from e-imaxina/cordova-plugin-deeplinks
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
64 lines (64 loc) · 4.18 KB
/
Copy pathplugin.xml
File metadata and controls
64 lines (64 loc) · 4.18 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-deeplinks" version="2.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Cordova Deeplinks Plugin</name>
<description>
Cordova plugin to add in your application support for Universal Links (iOS 9) and Deep Links (Android).
Basically, open application through the link in the browser.
</description>
<license>MIT</license>
<keywords>cordova,links,universal</keywords>
<repo>git@github.com:thing-it/cordova-plugin-deeplinks.git</repo>
<issue>https://github.com/thing-it/cordova-plugin-deeplinks/issues</issue>
<engines>
<engine name="cordova-ios" version=">=8.0.0" />
<engine name="cordova-android" version=">=4" />
</engines>
<js-module name="universalLinks" src="www/universal_links.js">
<clobbers target="universalLinks" />
</js-module>
<hook src="hooks/afterPrepareHook.js" type="after_prepare" />
<hook src="hooks/beforePluginInstallHook.js" type="before_plugin_install" />
<platform name="ios">
<hook src="hooks/iosBeforePrepareHook.js" type="before_prepare" />
<config-file parent="/*" target="config.xml">
<feature name="UniversalLinks">
<param name="ios-package" value="CULPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/ios/CULPlugin.m" />
<header-file src="src/ios/CULPlugin.h" />
<source-file src="src/ios/AppDelegate+CULPlugin.m" />
<source-file src="src/ios/JS/CDVPluginResult+CULPlugin.m" target-dir="JS/" />
<header-file src="src/ios/JS/CDVPluginResult+CULPlugin.h" target-dir="JS/" />
<source-file src="src/ios/JS/CDVInvokedUrlCommand+CULPlugin.m" target-dir="JS/" />
<header-file src="src/ios/JS/CDVInvokedUrlCommand+CULPlugin.h" target-dir="JS/" />
<source-file src="src/ios/Model/CULHost.m" target-dir="Model/" />
<header-file src="src/ios/Model/CULHost.h" target-dir="Model/" />
<source-file src="src/ios/Model/CULPath.m" target-dir="Model/" />
<header-file src="src/ios/Model/CULPath.h" target-dir="Model/" />
<source-file src="src/ios/Parser/XML/CULXmlTags.m" target-dir="Parser/XML/" />
<header-file src="src/ios/Parser/XML/CULXmlTags.h" target-dir="Parser/XML/" />
<source-file src="src/ios/Parser/XML/CULConfigXmlParser.m" target-dir="Parser/XML/" />
<header-file src="src/ios/Parser/XML/CULConfigXmlParser.h" target-dir="Parser/XML/" />
<source-file src="src/ios/Parser/JSON/CULConfigJsonParser.m" target-dir="Parser/JSON/" />
<header-file src="src/ios/Parser/JSON/CULConfigJsonParser.h" target-dir="Parser/JSON/" />
<source-file src="src/ios/Utils/NSBundle+CULPlugin.m" target-dir="Utils/" />
<header-file src="src/ios/Utils/NSBundle+CULPlugin.h" target-dir="Utils/" />
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="UniversalLinks">
<param name="android-package" value="com.nordnetab.cordova.ul.UniversalLinksPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/nordnetab/cordova/ul/js/JSAction.java" target-dir="src/com/nordnetab/cordova/ul/js/" />
<source-file src="src/android/com/nordnetab/cordova/ul/model/JSMessage.java" target-dir="src/com/nordnetab/cordova/ul/model/" />
<source-file src="src/android/com/nordnetab/cordova/ul/model/ULHost.java" target-dir="src/com/nordnetab/cordova/ul/model/" />
<source-file src="src/android/com/nordnetab/cordova/ul/model/ULPath.java" target-dir="src/com/nordnetab/cordova/ul/model/" />
<source-file src="src/android/com/nordnetab/cordova/ul/parser/ULConfigXmlParser.java" target-dir="src/com/nordnetab/cordova/ul/parser/" />
<source-file src="src/android/com/nordnetab/cordova/ul/parser/XmlTags.java" target-dir="src/com/nordnetab/cordova/ul/parser/" />
<source-file src="src/android/com/nordnetab/cordova/ul/UniversalLinksPlugin.java" target-dir="src/com/nordnetab/cordova/ul/" />
</platform>
</plugin>