2021-01-21 20:56:30 +10:00
2021-01-21 20:52:45 +10:00
2021-01-21 14:29:24 +10:00
2021-01-21 20:56:30 +10:00
2020-06-08 22:14:06 +03:00
2020-06-08 22:14:06 +03:00
2021-01-21 16:10:35 +10:00
2021-01-21 18:23:32 +10:00
2020-06-08 22:14:06 +03:00
2021-01-21 14:29:24 +10:00

react-native-appmetrica-next

React Native bridge to the AppMetrica on both iOS and Android. react-native-push-next library functionality is expanded react-native-appmetrica

Installation

npm install react-native-appmetrica-next --save or yearn add react-native-appmetrica-next

  1. If React Native version <= 0.59:
    react-native link react-native-appmetrica-next
  2. 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

Usage

import AppMetrica from "react-native-appmetrica-next";

// Starts the statistics collection process.
AppMetrica.activate({
  apiKey: "...KEY...",
  sessionTimeout: 120,
  firstActivationAsUpdate: true,
});

// 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");
Description
No description provided
Readme 14 MiB
Languages
Java 35.1%
Objective-C 34.1%
JavaScript 19.6%
Ruby 9.6%
Starlark 1.6%