
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
cordova-plugin-ga-force-gms-version
Advanced tools
Cordova (PhoneGap) 3.0+ Plugin to connect to Google's native Universal Analytics SDK
Prerequisites:
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.
window.analyticswindow.GA, but the newly added window.ga is recommended.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
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 numericTo track custom metrics:
window.ga.trackMetric('key', Value) Value is optionalTo track an Exception:
window.ga.trackException('Description', Fatal) where Fatal is booleanTo track User Timing (App Speed):
window.ga.trackTiming('Category', IntervalInMilliseconds, 'Variable', 'Label') where IntervalInMilliseconds is numericTo add a Transaction (Ecommerce)
window.ga.addTransaction('ID', 'Affiliation', Revenue, Tax, Shipping, 'Currency Code') where Revenue, Tax, and Shipping are numericTo add a Transaction Item (Ecommerce)
window.ga.addTransactionItem('ID', 'Name', 'SKU', 'Category', Price, Quantity, 'Currency Code') where Price and Quantity are numericTo add a Custom Dimension
window.ga.addCustomDimension('Key', 'Value', success, error)1 instead of dimension1 for the first custom dimension you are tracking.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 booleanFAQs
Google Universal Analytics Cordova Plugin
We found that cordova-plugin-ga-force-gms-version demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.