Opt-out
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