forked from Countly/countly-sdk-cordova
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
79 lines (58 loc) · 2.87 KB
/
Copy pathplugin.xml
File metadata and controls
79 lines (58 loc) · 2.87 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
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="countly-sdk-js" version="19.8.2">
<name>Countly</name>
<description>
Countly is an innovative, real-time, open source mobile analytics application. It collects data from mobile devices, and visualizes this information to analyze mobile application usage and end-user behavior. There are two parts of Countly: the server that collects and analyzes data, and mobile SDK that sends this data. Both parts are open source with different licensing terms.
</description>
<author>Trinisoft Technologies Pvt. Ltd.</author>
<license>Open source with different licensing terms.</license>
<keywords>Event, Mobile analytical</keywords>
<repo>https://github.com/Countly/countly-sdk-js.git</repo>
<issue>https://github.com/Countly/countly-sdk-js/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0"/>
<engine name="cordova-android" version=">=3.0.0"/>
<engine name="cordova-ios" version=">=3.0.0"/>
</engines>
<js-module src="Countly.js" name="Countly">
<clobbers target="window.plugins.Countly" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CountlyCordova">
<param name="ios-package" value="CountlyCordova"/>
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/CountlyCordova.h"/>
<source-file src="src/ios/CountlyCordova.m"/>
<header-file src="src/ios/CountlyNative.h"/>
<source-file src="src/ios/CountlyNative.m"/>
<framework src="CoreTelephony.framework" weak="true" />
<framework src="OpenGLES.framework" weak="true" />
<framework src="Countly" type="podspec" spec="~> 19.08" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CountlyCordova">
<param name="android-package" value="ly.count.android.sdk.CountlyCordova" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<service android:name="org.openudid.OpenUDID_service">
<intent-filter>
<action android:name="org.openudid.GETUDID" />
</intent-filter>
</service>
</config-file>
<source-file src="src/android/CountlyCordova.java" target-dir="src/ly/count/android/sdk"/>
<source-file src="src/android/CountlyNative.java" target-dir="src/ly/count/android/sdk"/>
<framework src="ly.count.android:sdk:19.02.3" />
<framework src="ly.count.android:sdk-messaging-fcm:19.02.3" />
</platform>
</plugin>