forked from perpective2410/virtualartifacts-webintent
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.xml
More file actions
38 lines (33 loc) · 1.38 KB
/
plugin.xml
File metadata and controls
38 lines (33 loc) · 1.38 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0" id="com.qdev.webintent"
version="1.0.4">
<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" phttps://phonegap.com/blog/2016/02/16/git-plugins/arent="/manifest/application">
<receiver
android:name="com.borismus.webintent.WebIntent$ReferralReceiver"
android:enabled="true"
android:exported="true"
android:label="@string/app_name">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
</config-file>
-->
</platform>
</plugin>