Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@boundstate/capacitor-firebase-analytics
Advanced tools
Capacitor plugin for iOS and Android for using Firebase Analytics
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();
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
npx cap add android
npm install capacitor-firebase-analytics
npx cap sync
add(com.philmerrell.firebaseanalytics.CapacitorFirebaseAnalytics.class);
in the this.init
method call.FAQs
Capacitor plugin for iOS and Android for using Firebase Analytics
The npm package @boundstate/capacitor-firebase-analytics receives a total of 1 weekly downloads. As such, @boundstate/capacitor-firebase-analytics popularity was classified as not popular.
We found that @boundstate/capacitor-firebase-analytics demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.