Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cordova-plugin-ga-force-gms-version

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-ga-force-gms-version

Google Universal Analytics Cordova Plugin

  • 1.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

cordova-plugin-ga

Cordova (PhoneGap) 3.0+ Plugin to connect to Google's native Universal Analytics SDK

Prerequisites:

  • A Cordova 3.0+ project for iOS, Android, browser (PWA), and/or Windows Phone 8
  • A Mobile App property through the Google Analytics Admin Console
  • (Android) Google Play Services SDK installed via Android SDK Manager

Why fork

This is a fork of cordova-plugin-google-analytics, which was not active maintained before. Since the project is more active, this fork is less relevant now.

Difference from upstream

  • Remove window.analytics
  • Export window.GA, but the newly added window.ga is recommended.

Installing

cordova plugin add cordova-plugin-ga --save

The plugin.xml file will add the Google Analytics SDK files for Android and/or iOS. Make sure to review the Google Analytics terms and SDK Policy

JavaScript Usage

In your 'deviceready' handler, set up your Analytics tracker:

  • window.ga.startTrackerWithId('UA-XXXX-YY', 30) where UA-XXXX-YY is your Google Analytics Mobile App property and 30 is the dispatch period (optional)

To track a Screen (PageView):

  • window.ga.trackView('Screen Title')

To track a Screen (PageView) w/ campaign details:

  • window.ga.trackView('Screen Title', 'my-scheme://content/1111?utm_source=google&utm_campaign=my-campaign')

To track a Screen (PageView) and create a new session:

  • window.ga.trackView('Screen Title', '', true)

To track an Event:

  • window.ga.trackEvent('Category', 'Action', 'Label', Value) Label and Value are optional, Value is numeric

To track custom metrics:

  • window.ga.trackMetric('key', Value) Value is optional

To track an Exception:

  • window.ga.trackException('Description', Fatal) where Fatal is boolean

To track User Timing (App Speed):

  • window.ga.trackTiming('Category', IntervalInMilliseconds, 'Variable', 'Label') where IntervalInMilliseconds is numeric

To add a Transaction (Ecommerce)

  • window.ga.addTransaction('ID', 'Affiliation', Revenue, Tax, Shipping, 'Currency Code') where Revenue, Tax, and Shipping are numeric

To add a Transaction Item (Ecommerce)

  • window.ga.addTransactionItem('ID', 'Name', 'SKU', 'Category', Price, Quantity, 'Currency Code') where Price and Quantity are numeric

To add a Custom Dimension

  • window.ga.addCustomDimension('Key', 'Value', success, error)
  • Key should be integer index of the dimension i.e. send 1 instead of dimension1 for the first custom dimension you are tracking.
  • e.g. window.ga.addCustomDimension(1, 'Value', success, error)

To set a UserId:

  • window.ga.setUserId('my-user-id')

To set a specific app version:

  • window.ga.setAppVersion('1.33.7')

To set a anonymize Ip address:

  • window.ga.setAnonymizeIp(true)

To set Opt-out:

  • window.ga.setOptOut(true)

To enabling Advertising Features in Google Analytics allows you to take advantage of Remarketing, Demographics & Interests reports, and more:

  • window.ga.setAllowIDFACollection(true)

To enable verbose logging:

  • window.ga.debugMode()

To enable/disable automatic reporting of uncaught exceptions

  • window.ga.enableUncaughtExceptionReporting(Enable, success, error) where Enable is boolean

Keywords

FAQs

Package last updated on 23 Mar 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc