forked from perpective2410/virtualartifacts-webintent
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
51 lines (46 loc) · 2.05 KB
/
plugin.xml
File metadata and controls
51 lines (46 loc) · 2.05 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0" id="com.virtualartifacts.webintent"
version="1.0.0">
<name>WebIntent</name>
<description>Web intents for Cordova</description>
<license>MIT</license>
<keywords>cordova, webintent</keywords>
<js-module src="www/webintent.js" name="WebIntent">
<clobbers target="WebIntent" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebIntent" >
<param name="android-package" value="com.borismus.webintent.WebIntent"/>
</feature>
</config-file>
<source-file src="src/android/WebIntent.java" target-dir="src/com/borismus/webintent" />
<config-file target="AndroidManifest.xml" parent="/*/application/activity">
<!--
<intent-filter>
<data android:scheme="http" />
<data android:host="brownbag.it" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
-->
<!--
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="text/*" />
<data android:pathPattern=".*" />
</intent-filter>
-->
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</config-file>
</platform>
</plugin>