forked from ionic-team/ionic-plugin-deeplinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
136 lines (124 loc) · 5.31 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="@spoonconsulting/ionic-plugin-deeplinks" version="1.0.241">
<name>Ionic Deeplink Plugin</name>
<description>Ionic Deeplink Plugin</description>
<license>MIT</license>
<keywords>Ionic,deeplinks,deeplinking</keywords>
<repo>https://github.com/ionic-team/ionic-plugin-deeplink.git</repo>
<issue>https://github.com/ionic-team/ionic-plugin-deeplink/issues</issue>
<preference name="URL_SCHEME" />
<preference name="DEEPLINK_SCHEME" default="https" />
<preference name="DEEPLINK_HOST" default="" />
<!-- android -->
<platform name="android">
<preference name="ANDROID_PATH_PREFIX" default="/" />
<preference name="ANDROID_2_PATH_PREFIX" default="/" />
<preference name="ANDROID_3_PATH_PREFIX" default="/" />
<preference name="ANDROID_4_PATH_PREFIX" default="/" />
<preference name="ANDROID_5_PATH_PREFIX" default="/" />
<preference name="DEEPLINK_2_SCHEME" default=" " />
<preference name="DEEPLINK_2_HOST" default=" " />
<preference name="DEEPLINK_3_SCHEME" default=" " />
<preference name="DEEPLINK_3_HOST" default=" " />
<preference name="DEEPLINK_4_SCHEME" default=" " />
<preference name="DEEPLINK_4_HOST" default=" " />
<preference name="DEEPLINK_5_SCHEME" default=" " />
<preference name="DEEPLINK_5_HOST" default=" " />
<js-module src="www/deeplink.js" name="deeplink">
<runs/>
<clobbers target="IonicDeeplink" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="IonicDeeplinkPlugin">
<param name="android-package" value="io.ionic.links.IonicDeeplink" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application/activity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$URL_SCHEME" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_SCHEME" />
<data android:host="$DEEPLINK_HOST" />
<data android:pathPrefix="$ANDROID_PATH_PREFIX" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_2_SCHEME" />
<data android:host="$DEEPLINK_2_HOST" />
<data android:pathPrefix="$ANDROID_2_PATH_PREFIX" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_3_SCHEME" />
<data android:host="$DEEPLINK_3_HOST" />
<data android:pathPrefix="$ANDROID_3_PATH_PREFIX" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_4_SCHEME" />
<data android:host="$DEEPLINK_4_HOST" />
<data android:pathPrefix="$ANDROID_4_PATH_PREFIX" />
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="$DEEPLINK_5_SCHEME" />
<data android:host="$DEEPLINK_5_HOST" />
<data android:pathPrefix="$ANDROID_5_PATH_PREFIX" />
</intent-filter>
</config-file>
<source-file src="src/android/io/ionic/links/IonicDeeplink.java" target-dir="src/io/ionic/deeplink" />
</platform>
<!-- ios -->
<platform name="ios">
<js-module src="www/deeplink.js" name="deeplink">
<runs/>
<clobbers target="IonicDeeplink" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="IonicDeeplinkPlugin">
<param name="ios-package" value="IonicDeeplinkPlugin" onload="true" />
</feature>
<preference name="URL_SCHEME" value="$URL_SCHEME" />
<preference name="DEEPLINK_SCHEME" value="$DEEPLINK_SCHEME" />
<preference name="DEEPLINK_HOST" value="$DEEPLINK_HOST" />
</config-file>
<config-file target="*-Info.plist" parent="CFBundleURLTypes">
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>$URL_SCHEME</string>
</array>
</dict>
</array>
</config-file>
<source-file src="src/ios/AppDelegate+IonicDeeplink.m" />
<header-file src="src/ios/IonicDeeplinkPlugin.h" />
<source-file src="src/ios/IonicDeeplinkPlugin.m" />
</platform>
<platform name="browser">
<js-module src="www/deeplink.js" name="deeplink">
<runs/>
<clobbers target="IonicDeeplink" />
</js-module>
<js-module src="src/browser/DeeplinkProxy.js" name="IonicDeeplinkProxy">
<runs />
</js-module>
</platform>
</plugin>