forked from lnavarro/cordova-comscore-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
67 lines (55 loc) · 2.7 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
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="com.comscoreplugin" version="0.1.0">3
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>ComScore Plugin</name>
<description>Simple plugin to connect SDK ComScore with Cordova</description>
<author>Leonardo Navarro</author>
<license>MIT</license>
<js-module src="www/ComScorePlugin.js" name="ComScorePlugin">
<clobbers target="window.ComScorePlugin" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ComScorePlugin">
<param name="android-package" value="com.comscoreplugin.ComScorePlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
</config-file>
<source-file src="src/android/ComScorePlugin.java" target-dir="src/com/comscoreplugin" />
<source-file src="src/android/comscore.jar" target-dir="libs" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ComScorePlugin">
<param name="ios-package" value="ComScorePlugin" />
</feature>
</config-file>
<header-file src="src/ios/ComScorePlugin.h" />
<source-file src="src/ios/ComScorePlugin.m" />
<source-file src="src/ios/libcomScore.a" framework="true" />
<header-file src="src/ios/CSApplicationState.h" />
<header-file src="src/ios/CSCacheFlusher.h" />
<header-file src="src/ios/CSCensus.h" />
<header-file src="src/ios/CSComScore.h" />
<header-file src="src/ios/CSCore.h" />
<header-file src="src/ios/CSEventType.h" />
<header-file src="src/ios/CSKeepAlive.h" />
<header-file src="src/ios/CSMeasurementDispatcher.h" />
<header-file src="src/ios/CSNotificationsObserver.h" />
<header-file src="src/ios/CSOfflineCache.h" />
<header-file src="src/ios/CSSessionState.h" />
<header-file src="src/ios/CSStorage.h" />
<header-file src="src/ios/CSTaskExecutor.h" />
<header-file src="src/ios/CSTransmissionMode.h" />
<framework src="SystemConfiguration.framework" />
<framework src="Security.framework" />
</platform>
</plugin>