Skip to main content

Analytics Firebase

Google Analytics Firebase plugin for Ionic Native apps.

https://github.com/appfeel/analytics-google

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.

Installation#

$ npm install cordova-plugin-analytics
$ npm install @ionic-native/analytics-firebase
$ ionic cap sync

Supported Platforms#

  • Android
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { AnalyticsFirebase } from '@ionic-native/analytics-firebase';
constructor(private analyticsFirebase: AnalyticsFirebase) { }
// Track an event with default events and params
const eventParams = {};
eventParams[this.analyticsFirebase.DEFAULT_PARAMS.LEVEL] = 29;
this.analyticsFirebase.logEvent(this.analyticsFirebase.DEFAULT_EVENTS.LEVEL_UP, eventParams)
.then(() => console.log('Event successfully tracked'))
.catch(err => console.log('Error tracking event:', err));
// Track an event with custom events and params
const eventParams = {};
eventParams['my-prop'] = 29;
this.analyticsFirebase.logEvent('my-event', eventParams)
.then(() => console.log('Event successfully tracked'))
.catch(err => console.log('Error tracking event:', err));
// Reset analytics data
this.analyticsFirebase.resetAnalyticsData()
.then(() => console.log('Analytics data have been reset'))
.catch(err => console.log('Error resetting analytics data:', err));
// Track a screen view
this.analyticsFirebase.setCurrentScreen('Home')
.then(() => console.log('View successfully tracked'))
.catch(err => console.log('Error tracking view:', err));
// Set user id
this.analyticsFirebase.setUserId('USER-ID')
.then(() => console.log('User id successfully set'))
.catch(err => console.log('Error setting user id:', err));
// Set user property from default properties
this.analyticsFirebase.setUserProperty('KEY', 'VALUE')
.then(() => console.log('User property successfully set'))
.catch(err => console.log('Error setting user property:', err));