This repo is looking for a good home. I no longer/never had the time to maintain it. Please create an issue if anyone is interested taking it over.
This is Firebase Analytics plugin for Capacitor.
$ npm install capacitor-firebase-analytics
Navigate to the project settings page for your application on Firebase.
Download the google-services.json
file and copy it to the android/app/
directory of your capacitor project. You will also need to add the Firebase SDK to your gradle files.
More info can be found here:
https://firebase.google.com/docs/android/setup#manually_add_firebase
Download the GoogleService-Info.plist
file. In Xcode right-click on the yellow folder named, "App" and select the 'Add files to "App"'.
tip: If you drag and drop your file to this location, You need set Target Membership
on Xcode.
In file android/app/src/main/java/**/**/MainActivity.java
, add the plugin to the initialization list:
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
[...]
add(com.philmerrell.firebaseanalytics.CapacitorFirebaseAnalytics.class);
[...]
}});
not need configuration.
Logs an app event.
Plugins.CapacitorFirebaseAnalytics.logEvent({ name: 'event_name', parameters: { param1: 'value1', param2: 'value2' });
Sets the user ID property.
Plugins.CapacitorFirebaseAnalytics.setUserId({ userId: '11223344' });
Sets a user property to a given value.
Plugins.CapacitorFirebaseAnalytics.setUserProperty({ name: 'name1', value: 'value1' });
Sets the current screen name, which specifies the current visual context in your app. This helps identify the areas in your app where users spend their time and how they interact with your app.
Plugins.CapacitorFirebaseAnalytics.setScreenName({ screenName: 'screen1', screenClassOverride: 'ScreenClassName'});
The unique ID for this instance of the application.
Plugins.CapacitorFirebaseAnalytics.appInstanceId();
Clears all analytics data for this instance from the device and resets the app instance ID.
FirebaseAnalytics.resetAnalyticsData();
- On the Firebase console (https://console.firebase.google.com/), click "Add project."
- Click "Create Project" after naming the project and accepting the terms.
- Click the continue button after the project is ready.
- Click on the Android logo to add an app. If you are unable to find it, follow these steps:
- In the top left, there is a cog next to "Project Overview." Click it and go to the project settings.
- At the bottom of the general settings, click on the Android logo in the "Your apps" section to add an app.
- Enter a package name. Keep your browser open. You will finish this later.
ionic start <name> <template> [options]
See: https://ionicframework.com/docs/cli/commands/start/cd [project-directory]
npm install
ionic build
npm install --save @capacitor/core @capacitor/cli
See: https://capacitor.ionicframework.com/docs/getting-started/npx cap init
- When you are prompted for the "App Package ID", enter in the package that was entered on Step 5 of Step 1.
npx cap add android
npm install capacitor-firebase-analytics
npx cap sync
- Open project in Android Studio.
- In the 'MainAcivity.java' file, add
add(com.philmerrell.firebaseanalytics.CapacitorFirebaseAnalytics.class);
in thethis.init
method call.
- Return to the Firebase app registration from the end of Step 1.
- Click "Register app"
- Follow the instructions for downloading the 'google-services.json' and adding the Firebase SDK.
- Run the app. If everything worked correctly, you should see a response on the Firebase console.
- More info can be found here: https://firebase.google.com/docs/android/setup