React Native bridge to the AppMetrica on both iOS and Android.
This package forked from RNAppMetrica for modification to newer rn versions.
- Upgraded SDK versions to (IOS: v4.5.2, Android: v5.3.0)
- Support for Apple Silicon chips
- Support for TypeScript
- Supports only above v0.63.4
npm install @gennadysx/react-native-appmetrica --save
- If React Native version <= 0.63.4:
react-native link @gennadysx/react-native-appmetrica
- iOS only
- if
${PROJECT_DIR}/ios/Podfile
exists:
npx pod-install
- if
${PROJECT_DIR}/ios/Podfile
don't exists:
Setup AppMetrica and placed frameworks at${PROJECT_DIR}/ios/Frameworks
import AppMetrica from '@gennadysx/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');
Origin Yandex AppMetrica. Modified with ♥ by GennadySX @2022.