forked from localytics/localytics-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
61 lines (48 loc) · 2.62 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="com.localytics.phonegap.LocalyticsPlugin" xmlns:android="http://schemas.android.com/apk/res/android" version="5.2.0">
<name>Localytics</name>
<description>Localytics Plugin for Cordova/PhoneGap</description>
<license>Apache 2.0</license>
<keywords>localytics</keywords>
<js-module src="www/localytics.js" name="Localytics">
<clobbers target="Localytics" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="LocalyticsPlugin">
<param name="ios-package" value="LocalyticsPlugin"/>
</feature>
</config-file>
<header-file src="src/ios/Localytics.h" />
<header-file src="src/ios/LocalyticsPlugin.h" />
<source-file src="src/ios/LocalyticsPlugin.m" />
<header-file src="src/ios/CDAnalyticsDelegate.h" />
<source-file src="src/ios/CDAnalyticsDelegate.m" />
<header-file src="src/ios/CDLocationDelegate.h" />
<source-file src="src/ios/CDLocationDelegate.m" />
<header-file src="src/ios/CDMessagingDelegate.h" />
<source-file src="src/ios/CDMessagingDelegate.m" />
<header-file src="src/ios/CDCTADelegate.h" />
<source-file src="src/ios/CDCTADelegate.m" />
<framework src="Localytics" type="podspec" spec="~> 5.2"/>
<framework src="UserNotifications" type="framework" />
</platform>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="LocalyticsPlugin" >
<param name="android-package" value="com.localytics.phonegap.LocalyticsPlugin"/>
</feature>
</config-file>
<framework src="src/android/plugin.gradle" custom="true" type="gradleReference"/>
<source-file src="src/android/LocalyticsPlugin.java" target-dir="src/com/localytics/phonegap/" />
<framework src="com.android.support:support-v4:+" />
<framework src="com.google.android.gms:play-services-gcm:11.4.2" />
<source-file src="src/android/CDAnalyticsListener.java" target-dir="src/com/localytics/phonegap/" />
<source-file src="src/android/CDLocationListener.java" target-dir="src/com/localytics/phonegap/" />
<source-file src="src/android/CDMessagingListener.java" target-dir="src/com/localytics/phonegap/" />
<source-file src="src/android/CDCTAListener.java" target-dir="src/com/localytics/phonegap/" />
</platform>
</plugin>