LaunchMay 27, 2026 · 3 min read

Announcing the Unilitix React Native SDK

The Unilitix SDK is now available for React Native developers on npm.

Install in one command

npm install react-native-unilitix

Initialize in App.tsx

export default function App() { useEffect(() => { Unilitix.init('YOUR_API_KEY'); }, []); return <NavigationContainer>...</NavigationContainer>; } ```

Screen tracking with React Navigation

<NavigationContainer
  onStateChange={(state) => {
    const route = state?.routes[state.index ?? 0];
    if (route?.name) Unilitix.screen(route.name);
  }}
>

Get started

Install with: npm install react-native-unilitix

Read the full docs at docs.unilitix.com

Ready to get started?

Free tier. 2-minute setup. No credit card.

Start for free →