summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-09-26 00:21:27 +0200
committerJules Laplace <julescarbon@gmail.com>2017-09-26 00:21:27 +0200
commit73cbc66bb96b348ec791e6854d6c24e6d85b2fa8 (patch)
treed06eddeec93e692fde63cde5b21a20ff623f1386 /StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml
parent3be2b3aea204f145d6e7c98d835891947105ed0e (diff)
cordova-plugin-firebase
Diffstat (limited to 'StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml')
-rw-r--r--StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml99
1 files changed, 0 insertions, 99 deletions
diff --git a/StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml b/StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml
deleted file mode 100644
index 55a8db9d..00000000
--- a/StoneIsland/plugins/cordova-plugin-google-analytics/plugin.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-<?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>