react-native-appmetrica-yandex2
v1.0.1
Published
React Native Yandex Appmetrica by Replanz
Downloads
3
Maintainers
Readme
react-native-appmetrica-yandex
Install
yarn add react-native-appmetrica-yandex
IOS
RN<0.60:
react-native link react-native-appmetrica-yandex
With CocoaPods, add the following line to your
Podfile
:pod 'react-native-appmetrica-yandex', :path => '../node_modules/react-native-appmetrica-yandex' pod 'YandexMobileMetrica', '3.8.2'
Then run
pod install
.RN>=0.60: With React Native 0.60 and later, linking of pods is done automatically
cd ios pod install
Android
RN<0.60:
2.1. Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.codeard.yandexmetrica.YandexAppmetricaPackage;
to the imports at the top of the file - Add
new YandexAppmetricaPackage()
to the list returned by thegetPackages()
method
2.2. Append the following lines to
android/settings.gradle
:include ':react-native-appmetrica-yandex' project(':react-native-appmetrica-yandex').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-appmetrica-yandex/android')
2.3. Insert the following lines inside the dependencies block in
android/app/build.gradle
:implementation project(':react-native-appmetrica-yandex')
RN>=0.60: With React Native 0.60 and later, linking is done automatically
- Add
Usage
import { YandexMetrica } from 'react-native-appmetrica-yandex';
// Initialize
YandexMetrica.activateWithApiKey('KEY');
// OR
YandexMetrica.activateWithConfig({
apiKey: 'KEY',
sessionTimeout: 120,
firstActivationAsUpdate: true,
});
YandexMetrica.setUserProfileID('12345');
YandexMetrica.setUserProfileAttributes({ ... })
// Sends a custom event message and additional parameters (optional).
YandexMetrica.reportEvent('My event');
YandexMetrica.reportEvent('My event', 'Test');
YandexMetrica.reportEvent('My event', { foo: 'bar' });
// Send a custom error event and additional parameters (optional).
YandexMetrica.reportError('My error');
YandexMetrica.reportError('My error', 'Test');
YandexMetrica.reportError('My error', { foo: 'bar' });
YandexMetrica.reportError('My error', new Error('test'));