Documentation Index
Fetch the complete documentation index at: https://docs.linkrunner.io/llms.txt
Use this file to discover all available pages before exploring further.
The Problem
You click a new campaign link and test a signup, but the dashboard attributes it to a different campaign — usually an older test link with a stale date.Why This Happens
The SDK generates a unique install instance ID on first launch and persists it on the device. All subsequent activity (installs, signups, events) is tied to this ID. When you test again without uninstalling, the SDK reuses the same ID and the backend attributes everything to the original campaign. No uninstall = same ID = attribution stuck on the first campaign.How to Fix It
1. Uninstall the app before each test
This clears the stored install instance ID so a fresh one is generated on next launch.2. Enable debug mode
Setdebug = true in your SDK init to see logs confirming a fresh install.
- React Native
- Flutter
- iOS
- Android
3. Run the test flow
- Click your new campaign link on the test device
- Install and open the app within 3 minutes of clicking
- Signup (if testing signup attribution)
Still seeing issues?
- Confirm you clicked the link on the same device where the app is installed
- Confirm you opened the app within 3 minutes of clicking
- See the full Integration Testing guide for a detailed walkthrough













