-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
65 lines (51 loc) · 2.53 KB
/
Copy pathplugin.xml
File metadata and controls
65 lines (51 loc) · 2.53 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.stratogos.cordova.googleAnalytics"
version="0.1.0">
<name>GoogleAnalytics</name>
<description>Cordova Google Analytics Plugin</description>
<author>Asi Farran</author>
<license>Apache 2.0</license>
<keywords>cordova,google,analytics</keywords>
<js-module src="www/googleAnalytics.js" name="GoogleAnalytics">
<clobbers target="googleAnalytics" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GoogleAnalytics">
<param name="ios-package" value="GoogleAnalyticsPlugin"/>
</feature>
</config-file>
<header-file src="src/ios/sdk/GAI.h" />
<header-file src="src/ios/sdk/GAIDictionaryBuilder.h" />
<header-file src="src/ios/sdk/GAIFields.h" />
<header-file src="src/ios/sdk/GAILogger.h" />
<header-file src="src/ios/sdk/GAITrackedViewController.h" />
<header-file src="src/ios/sdk/GAITracker.h" />
<header-file src="src/ios/sdk/GAIEcommerceFields.h" />
<header-file src="src/ios/sdk/GAIEcommerceProduct.h" />
<header-file src="src/ios/sdk/GAIEcommerceProductAction.h" />
<header-file src="src/ios/sdk/GAIEcommercePromotion.h" />
<header-file src="src/ios/GoogleAnalyticsPlugin.h" />
<source-file src="src/ios/GoogleAnalyticsPlugin.m" />
<source-file src="src/ios/sdk/libGoogleAnalyticsServices.a" framework="true" />
<framework src="libz.dylib" />
<framework src="AdSupport.framework" />
<framework src="CoreData.framework" />
<framework src="SystemConfiguration.framework" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GoogleAnalytics" >
<param name="android-package" value="com.stratogos.cordova.googleAnalytics.GoogleAnalyticsPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<source-file src="src/android/GoogleAnalyticsPlugin.java" target-dir="src/com/stratogos/cordova/googleAnalytics" />
<source-file src="src/android/sdk/libGoogleAnalyticsServices.jar"
target-dir="libs" />
</platform>
</plugin>