Installation
Step 1: Install the Package
Step 2: iOS Configuration
If you’re developing for iOS, follow these additional steps:- Install pods for the package:
- Add the following code to your
info.plistfile:
Step 3: SKAdNetwork Configuration
To enable SKAdNetwork postback copies to be sent to Linkrunner, add the following keys to yourInfo.plist file:
Step 4: Android Backup Configuration
For Android apps, the SDK provides backup rules to exclude Shared Preferences data from backup. This prevents the retention of the Linkrunner install ID during reinstallation, ensuring accurate detection of new installs and re-installs. For detailed backup configuration instructions, please refer to the Android SDK Backup Configuration.Expo Support
If you are using Expo, follow the above steps to install the required packages. After this, you will need to use development builds since the Linkrunner SDK relies on native libraries. Follow the Expo Development Builds Documentation to get started.Initialization
To initialize the Linkrunner SDK, add this code to yourApp.tsx component:
You can find your project token here.
SDK Signing Parameters (Optional)
For enhanced security, the LinkRunner SDK requires the following signing parameters during initialization:secretKey: A unique secret key used for request signing and authenticationkeyId: A unique identifier for the key pair used in the signing process
getAttributionData method.
User Registration
Call thesignup method once after the user has completed your app’s onboarding process:
It is strongly recommended to use the integrated platform’s identify function to set a persistent user_id once it becomes available (typically after signup or login).
- Mixpanel - ID Management & User Identification
- PostHog - How User Identification Works
- Amplitude - Identify Users Documentation
- mixpanel_distinct_id for Mixpanel
- posthog_distinct_id for PostHog
- amplitude_device_id for Amplitude
Getting Attribution Data
To get attribution data and deeplink information for the current installation, use thegetAttributionData function:
getAttributionData function returns:
Setting User Data
CallsetUserData each time the app opens and the user is logged in:
Setting CleverTap ID
Use thesetAdditionalData method to set CleverTap ID:
Parameters for linkrunner.setAdditionalData
clevertapId: string (optional) - CleverTap user identifier
Revenue Tracking
Revenue data is only stored and displayed for attributed users. Make sure you have implemented the
.signup function before capturing payments. To attribute a test user, follow the Integration Testing guide. You can verify your events are being captured on the Events Settings page.Capture Payment
Use this method to capture payment information:Parameters for linkrunner.capturePayment
amount: number (required) - The payment amountuserId: string (required) - Identifier for the user making the paymentpaymentId: string (optional) - Unique identifier for the paymenttype: string (optional) - Type of payment. Available options:FIRST_PAYMENT- First payment made by the userSECOND_PAYMENT- Second payment made by the userWALLET_TOPUP- Adding funds to a walletFUNDS_WITHDRAWAL- Withdrawing fundsSUBSCRIPTION_CREATED- New subscription createdSUBSCRIPTION_RENEWED- Subscription renewalONE_TIME- One-time paymentRECURRING- Recurring paymentDEFAULT- Default type (used if not specified)
status: string (optional) - Status of the payment. Available options:PAYMENT_INITIATED- Payment has been initiatedPAYMENT_COMPLETED- Payment completed successfully (default if not specified)PAYMENT_FAILED- Payment attempt failedPAYMENT_CANCELLED- Payment was cancelled
eventData: object (optional) - Key-value pairs for additional event data, including Meta ecommerce properties.
Removing Payments
Remove payment records (for refunds or cancellations):Parameters for Linkrunner.removePayment
userId: String (required) - Identifier for the user whose payment is being removedpaymentId: String (optional) - Unique identifier for the payment to be removed
paymentId or userId must be provided when calling removePayment. If only userId is provided, all payments for that user will be removed.
Ecommerce Events
Minimum SDK Version: Ecommerce Event Manager requires react-native-linkrunner v2.7.0 or above. Please ensure your SDK is updated before using this feature.
If you are tracking Ecommerce events to sync with Meta Catalog Sales, you must format your eventData to include Meta’s required fields. You also need to map your custom event to the standard commerce event in the Linkrunner Dashboard.
For detailed explanations of the required fields like content_ids, contents, and value, refer to our Meta Commerce Manager documentation.
Add To Cart Example
Use thetrackEvent method to send an AddToCart event:
View Content Example
Use thetrackEvent method to send a ViewContent event:
Payment / Purchase Example
Use thecapturePayment method to send a Purchase event containing the ecommerce payload:
Note: For more information on testing and verifying your ecommerce events, please see our Testing Ecommerce Events guide.
Tracking Custom Events
Events are only stored and displayed for attributed users. Make sure you have implemented the
.signup function before tracking events. To attribute a test user, follow the Integration Testing guide. You can verify your events are being captured on the Events Settings page. For capturing revenue, it is recommended to use the .capturePayment method instead of .trackEvent.Revenue Sharing with Ad Networks
To enable revenue sharing with ad networks like Google Ads and Meta, include anamount parameter as a number in your custom event data. This allows the ad networks to optimize campaigns based on the revenue value of conversions:
For revenue sharing with ad networks to work properly, ensure the
amount parameter is passed as a number, not as a
string.Enhanced Privacy Controls
The SDK offers options to enhance user privacy:Function Placement Guide
| Function | Where to Place | When to Call |
|---|---|---|
linkrunner.init | App.tsx within useEffect | Once when app starts |
linkrunner.getAttributionData | Attribution data handling flow | Whenever the attribution data is needed |
linkrunner.setAdditionalData | Integration code | When third-party integration IDs are available |
linkrunner.signup | Onboarding flow | Once after user completes onboarding |
linkrunner.setUserData | Authentication logic | Every time app opens with logged-in user |
linkrunner.trackEvent | Throughout app | When specific user actions occur |
linkrunner.capturePayment | Payment processing | When user makes a payment |
linkrunner.removePayment | Refund flow | When payment needs to be removed |
Next Steps
Test Your Integration
Validate your setup end-to-end
Set Up Deep Linking
Configure deep links for your app