Skip to content

Latest commit

 

History

History
86 lines (65 loc) · 3.17 KB

File metadata and controls

86 lines (65 loc) · 3.17 KB


React Native Firebase - Analytics

Coverage NPM downloads NPM version License Maintained with Lerna

Chat on Discord Follow on Twitter Follow on Facebook


Analytics integrates across Firebase features and provides you with unlimited reporting for up to 500 distinct events that you can define using the Firebase SDK. Analytics reports help you understand clearly how your users behave, which enables you to make informed decisions regarding app marketing and performance optimizations.

> Learn More

Installation

Requires @react-native-firebase/app to be installed.

yarn add @react-native-firebase/analytics

Expo

If you use Expo, including EAS Build, and want to build iOS Analytics without Ad ID support, add the Analytics config plugin to your app.json / app.config.js:

{
  "expo": {
    "plugins": [
      [
        "@react-native-firebase/analytics",
        {
          "ios": {
            "withoutAdIdSupport": true
          }
        }
      ]
    ]
  }
}

This adds $RNFirebaseAnalyticsWithoutAdIdSupport = true to the generated iOS Podfile during prebuild, which excludes FirebaseAnalytics/IdentitySupport.

Documentation

Additional Topics

License


Built and maintained with 💛 by Invertase.