Mobile attribution and deferred deep linking for Android. Distributed as a binary AAR —
package io.linktrail, entry point LinkTrail. (The counterpart of the
LinkTrail iOS SDK.)
- Artifact:
io.linktrail:sdk:0.0.3(on Maven Central) · Min SDK: 26
The SDK is published to Maven Central, so no custom repository is needed — just add the dependency:
// app/build.gradle.kts
dependencies {
implementation("io.linktrail:sdk:0.0.3")
}mavenCentral() is already in the default repositories of every Android project, which also
resolves the SDK's transitive dependencies (coroutines, Play Install Referrer, App Set ID). Just
keep google() alongside it.
import io.linktrail.LinkTrail
import io.linktrail.LinkTrailOptions
// In Application.onCreate(). The API key is required — a blank key throws.
LinkTrail.configure(context = this, apiKey = "lt_live_…")
// One hook handles both first-launch (deferred) AND re-engagement links:
LinkTrail.shared?.onLink { link, source ->
router.route(link.path, link.customData) // e.g. "/products/aj1" + { voucher: SUMMER25 }
}
// Observe failures if you want:
LinkTrail.shared?.onError { error -> /* e.g. LinkTrailError.InvalidApiKey */ }The install is tracked automatically by configure. Forward incoming links from your Activity:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
LinkTrail.shared?.handleDeepLink(intent?.data)
}
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
LinkTrail.shared?.handleDeepLink(intent.data)
}Every callback API also has a coroutine suspend twin (trackInstallAsync, handleDeepLinkAsync,
trackEventAsync). Callbacks are delivered on the main thread.
Declare your App Links host and (optionally) a custom scheme in the manifest:
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="kick.linktrail.io" />
</intent-filter>Then host a Digital Asset Links file at https://<host>/.well-known/assetlinks.json listing your
package + signing-cert SHA-256 (LinkTrail infra hosts this for your links).
Links opening the browser or Play Store instead of your installed app? That's almost always App Links verification — see TROUBLESHOOTING.md for the diagnosis commands, signing-certificate pitfalls, and the two caches involved.
example/ is KickFlip, a small Jetpack Compose storefront that shows deferred
deep linking end to end — it consumes this exact AAR, the same way your app would. A debug panel
fires the four scenarios (home · category · product · product + voucher):
cd example && ./gradlew :app:installDebugAdd your key to example/local.properties (linktrail.apiKey=lt_live_…) to run against the live
backend; without one it routes the simulator's links locally. You can also test from the terminal:
adb shell am start -a android.intent.action.VIEW \
-d "kickflip://products/aj1?voucher=SUMMER25&discountPercent=25"- 0.0.3 — Deferred deep linking fixes: read the
lt_clicktoken from the Play Install Referrer, sendclickIdas a string token, and parse the{ install, deepLink }install response. - 0.0.2 — Fix: omit null optional fields from request bodies (the backend rejects an explicit
nullclickId), which previously made every install/open fail with HTTP 400. - 0.0.1 — Initial release.
Semantic, tag-driven. x.y.z — breaking API changes bump the major/minor appropriately. This repo
carries only the compiled binary; the source is maintained privately.