forked from cranberrygame/cordova-plugin-analytics-referrer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
executable file
·26 lines (23 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-analytics-referrer"
version="1.0.1">
<engines>
<engine name="cordova" version=">=2.8.0" />
</engines>
<name>Android Referrer Plugin</name>
<description>Android Referrer Plugin</description>
<license>Apache 2.0</license>
<keywords>referrer</keywords>
<platform name="android">
<source-file src="src/com/eightz/mobile/cordova/plugin/android/referrer/Receiver.java" target-dir="src/com/eightz/mobile/cordova/plugin/android/referrer/" />
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<receiver android:exported="true" android:name="com.eightz.mobile.cordova.plugin.android.referrer.Receiver">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
</config-file>
</platform>
</plugin>