Integrate WilderLinks in under 5 minutes with our battle-tested SDKs for Swift, Kotlin, Unity C#, React Native, Flutter, and Web.
WilderLinks SDKs automate Universal Link registration, App Link resolution, Unity C# deferred tokens, and post-install attribution.
import Swift
import WilderlinksSDK
// Initialize WilderLinks in AppDelegate / App struct
WilderlinksClient.shared.configure(apiKey: "wl_live_key...")
// Catch Universal Link Handoff
func application(_ app: UIApplication, continue userActivity: NSUserActivity, ...) -> Bool {
return WilderlinksClient.shared.continueUserActivity(userActivity) { deepLink in
print("Destination screen:", deepLink.targetPath)
print("Campaign referrer:", deepLink.referrer)
}
}Why mobile teams trust WilderLinks to route millions of daily active app users.
Ultra-lightweight binaries (<100KB) that add zero bloat to your app store or Unity game build.
First-class support for iOS Swift, Android Kotlin, Unity C# (.unitypackage / UPM), React Native, Flutter, and Web.
Executes deferred token resolution asynchronously off the main UI thread during boot.
Deep technical capabilities built into every WilderLinks deployment.
Initialize WilderLinks in your root app component or Unity Awake() lifecycle to capture initial and background deep links automatically.
import { WilderLinks } from 'react-native-wilderlinks';
useEffect(() => {
WilderLinks.init({ apiKey: 'wl_live_key...' });
const unsubscribe = WilderLinks.onDeepLink((link) => {
navigation.navigate(link.targetScreen, link.params);
});
return () => unsubscribe();
}, []);Native C# bindings for Unity game developers on iOS & Android. Handles incoming deep links, clipboard tokens, and deferred install payloads.
using UnityEngine;
using Wilderbots.Wilderlinks;
public class WilderLinksManager : MonoBehaviour
{
void Awake()
{
WilderlinksClient.Init(new WilderlinksConfig(
baseUrl: "https://api.wilderlinks.com",
domains: new[] { "go.yourbrand.com" }
));
StartCoroutine(WilderlinksClient.CheckDeferredInstall(result => {
if (result.matched) {
Debug.Log("Deferred Payload: " + result.deepLinkPayloadJson);
}
}));
}
}< 10ms
Edge Cloudflare Handoff
99.99%
Enterprise SLA Standard
100%
Apple ATT & Sandbox
Everything you need to know about Cross-Platform & Unity SDKs.
No, WilderLinks SDK executes asynchronously off the main thread with sub-5ms latency.
We maintain official native packages for iOS (Swift), Android (Kotlin), Unity C# (.unitypackage & UPM), React Native, Flutter, and Web TypeScript.
You can add the Unity SDK via Unity Package Manager (UPM) using https://github.com/hellowilderlinks-cmyk/wilderlinks-sdks.git?path=/unity or by importing the WilderLinks.unitypackage.
You can add WilderLinks via Swift Package Manager (SPM) using https://github.com/hellowilderlinks-cmyk/wilderlinks-sdks.git. For local development, clone the repository and add the ios folder as a local package.
No, WilderLinks SDK is built privacy-first and does not require IDFA tracking or Apple ATT prompts.
The SDK caches deferred payloads locally in encrypted storage and synchronizes telemetry whenever connectivity is restored.
Deploy WilderLinks in under 5 minutes with zero vendor lock-in.