summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml
blob: 55a8db9d4e42a5baa6888ee2405aa09644089514 (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?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="cordova-plugin-google-analytics"
    version="1.8.3">
  <engines>
    <engine name="cordova" version=">=3.0.0" />
  </engines>
  <name>Google Universal Analytics Plugin</name>
  <description>Simple tracking (screens/events) for Google Analytics SDK 3.14 (iOS), SDK 4.0 (Android), Browsers and WP8</description>
  <author>Daniel C. Wilson</author>
  <license>MIT License</license>
  <js-module src="www/analytics.js" name="UniversalAnalytics">
    <!-- 'analytics' is deprecated, but supported to ease the transition -->
    <clobbers target="analytics" />
    <clobbers target="ga" />
  </js-module>

  <platform name="browser">
    <js-module src="browser/UniversalAnalyticsProxy.js" name="UniversalAnalyticsProxy">
      <runs />
    </js-module>
  </platform>

  <platform name="ios">
    <config-file target="config.xml" parent="/*">
      <feature name="UniversalAnalytics">
        <param name="ios-package" value="UniversalAnalyticsPlugin" />
      </feature>
    </config-file>

    <header-file src="ios/UniversalAnalyticsPlugin.h" />
    <source-file src="ios/UniversalAnalyticsPlugin.m" />
    <source-file src="ios/libGoogleAnalyticsServices.a" framework="true" />
    <source-file src="ios/libAdIdAccess.a" framework="true" />
    <header-file src="ios/GAIDictionaryBuilder.h" />
    <header-file src="ios/GAIFields.h" />
    <header-file src="ios/GAILogger.h" />
    <header-file src="ios/GAITrackedViewController.h" />
    <header-file src="ios/GAI.h" />
    <header-file src="ios/GAITracker.h" />
    <header-file src="ios/GAIEcommerceFields.h" />
    <header-file src="ios/GAIEcommerceProduct.h" />
    <header-file src="ios/GAIEcommerceProductAction.h" />
    <header-file src="ios/GAIEcommercePromotion.h" />

    <framework src="SystemConfiguration.framework" />
    <framework src="CoreData.framework" />
    <framework src="AdSupport.framework" />
    <framework src="libz.dylib" />
    <framework src="libsqlite3.dylib" />
  </platform>

  <platform name="android">
    <framework src="com.google.android.gms:play-services-analytics:+" />

    <config-file target="res/xml/config.xml" parent="/*">
      <feature name="UniversalAnalytics">
        <param name="android-package" value="com.danielcwilson.plugins.analytics.UniversalAnalyticsPlugin" />
      </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>
    <!-- Add support for devices without Google Play Services installed. -->
    <config-file target="AndroidManifest.xml" parent="/manifest/application">
      <receiver android:name="com.google.android.gms.analytics.AnalyticsReceiver" android:enabled="true">
        <intent-filter>
          <action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" />
        </intent-filter>
      </receiver>
      <service android:name="com.google.android.gms.analytics.AnalyticsService" android:enabled="true" android:exported="false"/>
      <receiver android:name="com.google.android.gms.analytics.CampaignTrackingReceiver" android:enabled="true" android:exported="true">
        <intent-filter>
          <action android:name="com.android.vending.INSTALL_REFERRER" />
        </intent-filter>
      </receiver>
      <service android:name="com.google.android.gms.analytics.CampaignTrackingService" android:enabled="true" android:exported="false"/>
    </config-file>
    <source-file src="android/UniversalAnalyticsPlugin.java" target-dir="src/com/danielcwilson/plugins/analytics" />
  </platform>

  <platform name="wp8">
    <config-file target="config.xml" parent="/*">
      <feature name="UniversalAnalytics">
        <param name="wp-package" value="UniversalAnalyticsPlugin" />
      </feature>
    </config-file>

    <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
        <Capability Name="ID_CAP_NETWORKING" />
    </config-file>

    <source-file src="wp8/UniversalAnalytics.cs" />
    <source-file src="wp8/PhoneHelpers.cs" />
    <source-file src="wp8/PhoneNameResolver.cs" />
    <source-file src="wp8/PlatformInfoProvider.WP.cs" />
  </platform>
</plugin>