forked from ionic-team/ionic-plugin-deeplinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
88 lines (77 loc) · 3.21 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="ionic-plugin-deeplinks"
version="1.0.8">
<name>Ionic Deeplink Plugin</name>
<description>Ionic Deeplink Plugin</description>
<license>MIT</license>
<keywords>Ionic,deeplinks,deeplinking</keywords>
<repo>https://github.com/driftyco/ionic-plugin-deeplink.git</repo>
<issue>https://github.com/driftyco/ionic-plugin-deeplink/issues</issue>
<preference name="URL_SCHEME" />
<preference name="DEEPLINK_SCHEME" default="" />
<preference name="DEEPLINK_HOST" default="" />
<!-- android -->
<platform name="android">
<preference name="ANDROID_PATH_PREFIX" 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>
<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" android:host="$DEEPLINK_HOST" android:pathPrefix="$ANDROID_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>
</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>