For the complete documentation index, see llms.txt. This page is also available as Markdown.

Opt-out

When opt-out is enabled, the SDK stops sending all events.

The React Native SDK operates based on the Android SDK and iOS SDK.

Configuration at Initialization

import { createInstance, HackleProvider } from "@hackler/react-native-sdk";

const config = {
    optOutTracking: true
};

const hackleClient = createInstance("YOUR_APP_SDK_KEY", config);

const App = () => {
  return (
    <HackleProvider hackleClient={hackleClient}>
      <YourApp />
    </HackleProvider>
  );
};

Runtime Opt-out Control

Persistence Management

Last updated