Installation
Install the package using your preferred package manager.
bash
npm install @apliko/react-native-deep-link
# or
yarn add @apliko/react-native-deep-linkNo additional native module installation is needed. This SDK uses React Native's built-in Linking API, making it compatible with any version.
Quick Start
Mandatory
You must initialize AplikoLink as early as possible (e.g., in your index.js or app entry file) with your Client API key. Without this, deep link handling will not work.
typescript
// index.js (or index.ts)
import { AplikoLink } from '@apliko/react-native-deep-link';
import App from './App';
// Initialize immediately with your Client API key
AplikoLink.init({ apiKey: "your-client-api-key" });Need a Client API Key?
To get started, you'll need a Client API key. Contact us to get onboarded and receive your client key.
Contact Us to Get Your Client Key →