GithubHelp home page GithubHelp logo

jack-gill-th / analytics-react-native Goto Github PK

View Code? Open in Web Editor NEW

This project forked from segmentio/analytics-react-native

0.0 0.0 0.0 641 KB

The hassle-free way to add analytics to your React-Native app.

License: MIT License

Ruby 4.00% Kotlin 19.24% Shell 3.66% Objective-C 8.05% TypeScript 55.85% Smarty 0.21% JavaScript 8.98%

analytics-react-native's Introduction

@segment/analytics-react-native

The hassle-free way to add analytics to your React-Native app.

Commitizen friendly CircleCI Codecov npm

Prerequisite

Android

  • Gradle 4+
    • Run ./gradlew wrapper --gradle-version=4.4 in your android folder
  • Build Tools 3+
    • Upgrade com.android.tools.build:gradle to 3.1.4 in your android/build.gradle file

iOS

Installation

$ yarn add @segment/analytics-react-native
$ yarn react-native link

Usage

See the API docs for more details.

import analytics from '@segment/analytics-react-native'
import Mixpanel from '@segment/analytics-react-native-mixpanel'
import GoogleAnalytics from '@segment/analytics-react-native-google-analytics'

analytics
    .setup('writeKey', {
        using: [Mixpanel, GoogleAnalytics],
        recordScreenViews: true,
        trackAppLifecycleEvents: true,
        trackAttributionData: true,

        android: {
            flushInterval: 60,
            collectDeviceId: true
        },
        ios: {
            trackAdvertising: true,
            trackDeepLinks: true
        }
    })
    .then(() =>
        console.log('Analytics is ready')
    )
    .catch(err =>
        console.error('Something went wrong', err)
    )

analytics.track('Pizza Eaten')
analytics.screen('Home')

Sending data to destinations

There are two ways to send data to your analytics services through this library:

  1. Through the Segment servers
  2. Directly from the device using bundled SDK’s

Note: Refer to the specific destination’s docs to see if your tool must be bundled in the app or sent server-side.

Cloud-based Connection Modes

When an destination’s SDK is not packaged, but it is enabled via your dashboard, the request goes through the Segment REST API, and is routed to the service’s server-side API as described here.

Packaging Device-based destination SDKs

By default, our @segment/analytics-react-native packages does not contain any device-based destinations.

We recommend using device-based destinations on a need-to-use basis to reduce the size of your application, and avoid running into the dreaded 65k method limit on Android.

If you would like to package device-based destinations, first search for the dependency you need using the list below. You'll need to run react-native link and add it in the .using() configuration method. Example using Google Analytics :

$ yarn add @segment/analytics-react-native-google-analytics
$ yarn react-native link

In your code :

import analytics from '@segment/analytics-react-native'
import GoogleAnalytics from '@segment/analytics-react-native-google-analytics'

await analytics.setup('writeKey', {
  using: [GoogleAnalytics]
})

Integrations

All integrations have the same version as @segment/analytics-react-native

Name iOS Android npm package
Adjust @segment/analytics-react-native-adjust
Amplitude @segment/analytics-react-native-amplitude
Appboy @segment/analytics-react-native-appboy
AppsFlyer @segment/analytics-react-native-appsflyer
Branch @segment/analytics-react-native-branch
Bugsnag @segment/analytics-react-native-bugsnag
ComScore @segment/analytics-react-native-comscore-ios
Countly @segment/analytics-react-native-countly
Crittercism @segment/analytics-react-native-crittercism
Facebook App Events @segment/analytics-react-native-facebook-app-events-ios
Firebase @segment/analytics-react-native-firebase
Flurry @segment/analytics-react-native-flurry
Google Analytics @segment/analytics-react-native-google-analytics
Intercom @segment/analytics-react-native-intercom
Localytics @segment/analytics-react-native-localytics
Mixpanel @segment/analytics-react-native-mixpanel
Quantcast @segment/analytics-react-native-quantcast-android
Taplytics @segment/analytics-react-native-taplytics-ios
Tapstream @segment/analytics-react-native-tapstream-android

Troubleshooting

iOS support without CocoaPods

We highly recommend using Cocoapods.

However, if you cannot use Cocoapods, you can manually install our dynamic framework allowing you to send data to Segment and on to enabled cloud-mode destinations. We do not support sending data to bundled, device-mode integrations outside of Cocoapods.

Here are the steps for installing manually:

  1. Add analytics-ios as a npm dependency: yarn add @segment/analytics-ios@github:segmentio/analytics-ios#3.6.10
  2. In the General tab for your project, search for Embedded Binaries and add the Analytics.framework Embed Analytics.framework

Please note, if you are choosing to not use a dependency manager, you must keep files up-to-date with regularly scheduled, manual updates.

Setup CocoaPods in an existing project

  1. Check that ios/Podfile doesn't exist

  2. cd ios

  3. pod init

  4. Open Podfile

  5. Edit your app target to have these pod declarations and the Add new pods below this line comment :

    target 'MyReactNativeApp' do
      pod 'React', :path => '../node_modules/react-native'
      pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
    
      # Add new pods below this line
    end
  6. pod install

"Failed to load [...] native module"

If you're getting a Failed to load [...] native module error, it means that some native code hasn't been injected to your native project.

iOS

If you're using Cocoapods, check that your ios/Podfile file contains the right pods :

  • Failed to load Analytics native module, look for the core native module:
    pod 'RNAnalytics', :path => '../node_modules/@segment/analytics-react-native'
  • Failed to load [...] integration native module, look for the integration native module, example with Google Analytics:
    pod 'RNAnalyticsIntegration-Google-Analytics', :path => '../node_modules/@segment/analytics-react-native-google-analytics'

Also check that your Podfile is synchronized with your workspace, run pod install in your ios folder.

If you're not using Cocoapods please check that you followed the iOS support without CocoaPods instructions carefully.

Android

Check that android/app/src/main/.../MainApplication.java contains a reference to the native module:

  • Failed to load Analytics native module, look for the core native module:

    import com.segment.analytics.reactnative.core.RNAnalyticsPackage;
    
    // ...
    
    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            // ...
            new RNAnalyticsPackage()
        );
    }
  • Failed to load [...] integration native module, look for the integration native module, example with Google Analytics:

    import com.segment.analytics.reactnative.integration.google.analytics.RNAnalyticsIntegration_Google_AnalyticsPackage;
    
    // ...
    
    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            // ...
            new RNAnalyticsIntegration_Google_AnalyticsPackage()
        );
    }

analytics-react-native's People

Contributors

ajmath avatar caroaguilar avatar fathyb avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.