Go to file
Aleksei Androsov 2abc7cc903 Merge pull request #4 from lex111/patch-1
Improve README
2017-10-01 11:43:37 +03:00
android Implement sendError for Android 2017-09-30 17:50:02 +03:00
example Update pkg in examaple project 2017-09-30 17:54:19 +03:00
ios/RCTAppMetrica Implement sendError for Android 2017-09-30 17:50:02 +03:00
.eslintignore Add ESLint 2017-09-18 10:07:46 +03:00
.eslintrc.json Add flow annotation 2017-09-30 15:41:58 +03:00
.flowconfig Add flow annotation 2017-09-30 15:41:58 +03:00
.gitignore gitignore 2017-09-18 10:03:45 +03:00
.npmignore Add example project to npmignore 2017-09-30 14:29:12 +03:00
.travis.yml Enable travis 2017-09-18 10:10:51 +03:00
index.js Add flow annotation 2017-09-30 15:41:58 +03:00
LICENSE Initial commit 2017-09-18 09:46:10 +03:00
package-lock.json 0.1.0 2017-09-30 17:53:06 +03:00
package.json 0.1.0 2017-09-30 17:53:06 +03:00
README.md Improve README 2017-09-30 19:47:14 +03:00
yarn.lock yarn 2017-09-30 15:41:24 +03:00

Build Status NPM version

react-native-appmetrica

React Native bridge to the AppMetrica on both iOS and Android.

Installation

  1. Only for iOS: setup AppMetrica. YandexMobileMetrica.framework should be placed at <project_dir>/ios/ or <project_dir>/ios/Frameworks/. Otherwise you'll get build error.
  2. npm install --save react-native-appmetrica
  3. react-native link react-native-appmetrica

iOS notice: If you build failed after installing SDK and react-native-appmetrica make sure YandexMobileMetrica.framework and libRCTAppMetrica.a are included at Build Phase -> Link Binary With Libraries

Example

import AppMetrica from 'react-native-appmetrica';

AppMetrica.activateWithApiKey('2dee16d2-1143-4cd3-a904-39ce10ac2755');

AppMetrica.reportEvent('Hello world');

Usage

import AppMetrica from 'react-native-appmetrica';

// Starts the statistics collection process.
AppMetrica.activateWithApiKey('...KEY...');

// Sends a custom event message and additional parameters (optional).
AppMetrica.reportEvent('My event');
AppMetrica.reportEvent('My event', { foo: 'bar' });

// Send a custom error event.
AppMetrica.reportError('My error');