npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-analytics-tools

v1.1.6

Published

A universal module for integrating Firebase, Facebook, Branch, and AppsFlyer analytics in React Native apps.

Downloads

83

Readme

React Native Analytics Tools

A universal module for integrating Firebase, Facebook, Branch, and AppsFlyer analytics in React Native apps.

Installation

Step 1: Install the Package

Install the module via npm or yarn:

npm install react-native-analytics-tools
# or
yarn add react-native-analytics-tools

Step 2: Install Required Dependencies

npm install @react-native-firebase/app @react-native-firebase/analytics
npm install react-native-fbsdk-next
npm install react-native-branch
npm install react-native-appsflyer
npx pod-install

Configuration

iOS Configuration

  1. Install CocoaPods Dependencies:

    In the ios directory of your React Native project, run:

    npx pod-install
  2. Add Firebase Configuration:

    • Download the GoogleService-Info.plist from your Firebase project.
    • Place the GoogleService-Info.plist file in the ios directory of your project.
    • Open your .xcworkspace file in Xcode and drag the GoogleService-Info.plist into the project navigator.
  3. Add Facebook Configuration:

    • Configure your app in the Facebook Developer Console.

    • Open your Info.plist file and add the following entries:

      <key>FacebookAppID</key>
      <string>Your_Facebook_App_ID</string>
      <key>FacebookDisplayName</key>
      <string>Your_App_Display_Name</string>
      <key>CFBundleURLTypes</key>
      <array>
        <dict>
          <key>CFBundleURLSchemes</key>
          <array>
            <string>fbYour_Facebook_App_ID</string>
          </array>
        </dict>
      </array>
    • Implement the following method in your app delegate to handle Facebook URL schemes:

      import FBSDKCoreKit
      
      @UIApplicationMain
      class AppDelegate: UIResponder, UIApplicationDelegate {
          var window: UIWindow?
      
          func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
              ApplicationDelegate.shared.application(application, didFinishLaunchingWithOptions: launchOptions)
              return true
          }
      
          func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
              return ApplicationDelegate.shared.application(application, open: url, options: options)
          }
      
          func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
              return ApplicationDelegate.shared.application(application, continue: userActivity, restorationHandler: restorationHandler)
          }
      }
  4. Add Branch Configuration:

    • Open your Info.plist file and add the following entries:

      <key>branch_key</key>
      <string>Your_Branch_Key</string>
    • Implement the following methods in your app delegate to handle Branch initialization:

      import Branch
      
      @UIApplicationMain
      class AppDelegate: UIResponder, UIApplicationDelegate {
          var window: UIWindow?
      
          func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
              let branch = Branch.getInstance()
              branch.initSession(launchOptions: launchOptions, andRegisterDeepLinkHandler: { params, error in
                  if let params = params as? [String: AnyObject], error == nil {
                      print("Branch initialization completed with params: \(params)")
                  }
              })
              return true
          }
      
          func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
              return Branch.getInstance().application(application, open: url, options: options)
          }
      
          func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
              return Branch.getInstance().continue(userActivity)
          }
      }
  5. Add AppsFlyer Configuration:

    • Add AppsFlyerFramework to your Podfile:

      pod 'AppsFlyerFramework'
    • In AppDelegate.m, import the AppsFlyer SDK:

      #import <AppsFlyerLib/AppsFlyerLib.h>
    • Initialize AppsFlyer in the didFinishLaunchingWithOptions method:

      [[AppsFlyerLib shared] setAppsFlyerDevKey:@"YOUR_DEV_KEY"];
      [[AppsFlyerLib shared] setAppleAppID:@"YOUR_APP_ID"];
      [[AppsFlyerLib shared] start];

Android Configuration

  1. Add Firebase Configuration:

    • Download the google-services.json file from your Firebase project.

    • Place the google-services.json file in the android/app directory.

    • Add the following classpath to your android/build.gradle file:

      dependencies {
          classpath 'com.google.gms:google-services:4.3.3'
      }
    • Apply the Google services plugin at the bottom of the android/app/build.gradle file:

      apply plugin: 'com.google.gms.google-services'
  2. Add Facebook Configuration:

    • Configure your app in the Facebook Developer Console.

    • Add the following to your android/app/src/main/res/values/strings.xml file:

      <string name="facebook_app_id">Your_Facebook_App_ID</string>
    • Add the following to your android/app/src/main/AndroidManifest.xml file:

      <application>
          <meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
          <activity android:name="com.facebook.FacebookActivity"
                    android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|smallestScreenSize"
                    android:label="@string/app_name" />
          <activity android:name="com.facebook.CustomTabActivity"
                    android:exported="true">
              <intent-filter>
                  <action android:name="android.intent.action.VIEW" />
                  <category android:name="android.intent.category.DEFAULT" />
                  <category android:name="android.intent.category.BROWSABLE" />
                  <data android:scheme="@string/fb_login_protocol_scheme" />
              </intent-filter>
          </activity>
      </application>
  3. Add Branch Configuration:

    • Open your android/app/src/main/AndroidManifest.xml file and add the following entries:

      <application>
          <meta-data android:name="io.branch.sdk.BranchKey" android:value="Your_Branch_Key" />
      </application>
  4. Add AppsFlyer Configuration:

    • Add AppsFlyer SDK to your android/build.gradle:

      dependencies {
          implementation 'com.appsflyer:af-android-sdk:6.+'
      }
    • Initialize AppsFlyer in MainApplication.java:

      import com.appsflyer.AppsFlyerLib;
      
      AppsFlyerLib.getInstance().init("YOUR_DEV_KEY", null, this);
      AppsFlyerLib.getInstance().start(this);

Usage

Import the Module

import analytics from 'react-native-analytics-tools';

Initialize the Module

const config = {
  firebase: { enabled: true },
  facebook: { enabled: true },
  branch: { enabled: true },
  appsFlyer: {
    enabled: true,
    devKey: 'YOUR_DEV_KEY',
    appId: 'YOUR_APP_ID',
  },
};

analytics.initialize(config);

Log Events

analytics.logEvent('event_name', { param1: 'value1', param2: 'value2' });

Set User ID

analytics.setUserId('user123');

Set User Property

analytics.setUserProperty('property_name', 'value');

Example

import React from 'react';
import { View, Button } from 'react-native';
import analytics from 'react-native-analytics-tools';

const App = () => {
  const handleButtonClick = () => {
    analytics.logEvent('button_click', { button: 'example_button' });
  };

  return (
    <View>
      <Button title="Log Event" onPress={handleButtonClick} />
    </View>
  );
};

export default App;

License

MIT License

.gitignore

# Dependencies
/node_modules
/.pnp
.pnp.js

# Testing
/coverage

# Production
/build

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*