Analytics Firebase
Google Analytics Firebase plugin for Ionic Native apps.
https://github.com/appfeel/analytics-google
Stuck on a Cordova issue?
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#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-analytics $ npm install @ionic-native/analytics-firebase $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-analytics $ npm install @ionic-native/analytics-firebase
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { AnalyticsFirebase } from '@ionic-native/analytics-firebase';
constructor(private analyticsFirebase: AnalyticsFirebase) { }
// Track an event with default events and paramsconst 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 paramsconst 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 datathis.analyticsFirebase.resetAnalyticsData() .then(() => console.log('Analytics data have been reset')) .catch(err => console.log('Error resetting analytics data:', err));
// Track a screen viewthis.analyticsFirebase.setCurrentScreen('Home') .then(() => console.log('View successfully tracked')) .catch(err => console.log('Error tracking view:', err));
// Set user idthis.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 propertiesthis.analyticsFirebase.setUserProperty('KEY', 'VALUE') .then(() => console.log('User property successfully set')) .catch(err => console.log('Error setting user property:', err));