android | ||
example | ||
ios | ||
.gitignore | ||
.npmignore | ||
AUTHORS | ||
index.js | ||
LICENSE | ||
package.json | ||
react-native-appmetrica.podspec | ||
README.md |
react-native-appmetrica
React Native bridge to the AppMetrica on both iOS and Android.
Installation
npm install @jil/react-native-appmetrica --save
Usage
import AppMetrica from 'react-native-appmetrica';
// Starts the statistics collection process.
AppMetrica.activate({
apiKey: '...KEY...',
sessionTimeout: 120,
firstActivationAsUpdate: false,
});
// 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');