Appearance
Android SDK
Complete guide for integrating Linkrunner in native Android apps
Requirements
- Android 5.0 (API level 21) or higher
- Android Studio Flamingo (2022.2.1) or newer
- Gradle 8.0+
Installation
Step 1: Gradle Setup
Add the Linkrunner SDK to your app's build.gradle file:
gradle
dependencies {
implementation 'io.linkrunner:android-sdk:2.1.5'
}Make sure you have the Maven Central repository in your project's settings.gradle file:
gradle
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}Step 2: Required Permissions
Add the following permissions to your AndroidManifest.xml file:
xml
<!-- Required for the SDK to make network requests -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />Note: The
AD_IDpermission (<uses-permission android:name="com.google.android.gms.permission.AD_ID" />) is already included in the SDK and is required for collecting device identifiers (GAID). If your app participates in Designed for Families, you should revoke AAID and disable AAID collection. See the Disabling AAID Collection section for more details.
Step 3: Backup Configuration
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.
This backup configuration works similarly for all SDKs (React Native, Flutter, and native Android). The same Android backup rules apply regardless of which SDK you're using.
Adding Backup Rules to Your App
Add to your AndroidManifest.xml:
xml
<application
android:fullBackupContent="@xml/linkrunner_backup_descriptor"
android:dataExtractionRules="@xml/linkrunner_backup_rules">
<!-- Your app content -->
</application>android:fullBackupContent- Used for Android 6-11android:dataExtractionRules- Used for Android 12+
Merging Backup Rules
If you already have your own backup rules specified (e.g., android:fullBackupContent="@xml/my_backup_descriptor" or android:dataExtractionRules="@xml/my_rules"), then manually add the following rules to your existing files:
For legacy backup (Android 6-11) in res/xml/my_backup_descriptor:
xml
<full-backup-content>
<!-- Exclude LinkRunner SDK SharedPreferences from legacy backup -->
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
</full-backup-content>For modern backup (Android 12+) in res/xml/my_backup_rules.xml:
xml
<data-extraction-rules>
<cloud-backup>
<!-- Exclude LinkRunner SDK SharedPreferences from cloud backup -->
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
</cloud-backup>
<device-transfer>
<!-- Exclude LinkRunner SDK SharedPreferences from device transfer -->
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
</device-transfer>
</data-extraction-rules>Step 4: Encrypted SharedPreferences
SDK Version Requirement: Starting from linkrunner-android v3.8.1, the SDK automatically encrypts the credentials it stores in SharedPreferences. No additional configuration is required — upgrade to v3.8.1 or above to get this behavior by default.
Values written by the SDK are encrypted at rest, with a hardware-protected key generated on the device and stored in the Android Keystore. The key never leaves the device and is not bundled with the SDK.
If you are upgrading from an earlier version, the SDK will transparently migrate any existing plaintext entries to the encrypted store on the next read after the upgrade — no code changes are needed on your side.
Step 5: Revoking the AD_ID Permission (Optional)
According to Google's Policy, apps that target children must not transmit the Advertising ID.
To revoke the AD_ID permission, use SDK version 3.5.0 and above. Children apps targeting Android 13 (API 33) and above must prevent the permission from getting merged into their app by adding a revoke declaration to their Manifest. Use the setDisableAaidCollection() and isAaidCollectionDisabled() functions to disable AAID collection programmatically:
AndroidManifest.xml
xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- Remove AD_ID permission that comes from the SDK -->
<uses-permission
android:name="com.google.android.gms.permission.AD_ID"
tools:node="remove" />
<!-- Your other permissions -->
</manifest>Make sure to add xmlns:tools="http://schemas.android.com/tools" to your manifest tag to use the tools:node="remove" attribute. If you disable AAID collection, you should also remove the AD_ID permission from your manifest to fully comply with Google Play's Family Policy requirements.
For more information, see Google Play Services documentation.
Importing in Kotlin/Java
After installation, you can import the SDK in your Kotlin or Java files:
kotlin
// Kotlin
import io.linkrunner.sdk.LinkRunnerjava
// Java
import io.linkrunner.sdk.LinkRunner;Initialization (Required)
Initialize the Linkrunner SDK in your application, typically in your Application class or main activity:
You can find your project token here.
Note: This method returns a void. To get attribution data and deeplink information, use the getAttributionData method.
kotlin
import android.app.Application
import io.linkrunner.sdk.LinkRunner
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
// Initialize LinkRunner with SDK signing
CoroutineScope(Dispatchers.IO).launch {
try {
LinkRunner.getInstance().init(
context = applicationContext,
token = "YOUR_PROJECT_TOKEN",
secretKey = "YOUR_SECRET_KEY", // Optional: Required for SDK signing
keyId = "YOUR_KEY_ID", // Optional: Required for SDK signing
debug = true // Optional: Enable debug mode for development (defaults to false)
)
println("LinkRunner initialized successfully")
} catch (e: Exception) {
println("Exception during initialization: ${e.message}")
}
}
}
}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 processdebug(optional): Boolean flag to enable debug mode for development (defaults to false)
You can find your project token, secret key, and key ID here.
User Identification (Required)
Call the signup method as soon as the user is identified — whether through signup or login. This is the moment Linkrunner ties the install (and any future events) to a user identifier.
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
If the platform's identifier function is not called, you must provide a user identifier for Mixpanel, PostHog, and Amplitude integration.
- mixpanelDistinctId for Mixpanel
- posthogDistinctId for PostHog
- amplitudeDeviceId for Amplitude
kotlin
private fun onSignup() {
CoroutineScope(Dispatchers.IO).launch {
try {
val userData = UserDataRequest(
id = "123", // Required: User ID
name = "John Doe", // Optional
phone = "9876543210", // Optional
email = "user@example.com", // Optional
mixpanelDistinctId = "mixpanel_distinct_id", // Optional - Mixpanel Distinct ID
amplitudeDeviceId = "amplitude_device_id", // Optional - Amplitude User ID
posthogDistinctId = "posthog_distinct_id" // Optional - PostHog Distinct ID
userCreatedAt = "2024-01-01T00:00:00Z", // Optional
isFirstTimeUser = true, // Optional
)
LinkRunner.getInstance().signup(
userData = userData,
additionalData = mapOf("custom_field" to "custom_value") // Optional: Any additional data
)
println("Signup successful")
} catch (e: Exception) {
println("Exception during signup: ${e.message}")
}
}
}Handle Deeplink
To enable remarketing and reattribution, you need to capture deep links and pass them to the Linkrunner SDK. This allows Linkrunner to detect returning users who open the app via a deep link.
kotlin
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// Cold start deeplink
handleDeeplinkFromIntent(intent)
}
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
setIntent(intent)
// Warm start deeplink
handleDeeplinkFromIntent(intent)
}
private fun handleDeeplinkFromIntent(intent: Intent) {
intent.data?.let { uri ->
lifecycleScope.launch {
LinkRunner.getInstance().handleDeeplink(uri.toString())
}
}
}
}Linkrunner sends the updated deeplink back after processing. For Linkrunner campaign links, use the returned deeplink as the resolved destination instead of the original tracking URL.
json
{
"deeplink": "https://app.yourdomain.com/product/123"
}Getting Attribution Data
To get attribution data and deeplink information for the current installation, use the getAttributionData function:
kotlin
val attributionDataResult = LinkRunner.getInstance().getAttributionData()
attributionDataResult.onSuccess { attributionData ->
println("Attribution data: $attributionData")
// Attribution data includes:
// - deeplink: The deep link URL that led to app installation
// - campaignData: Campaign information
}kotlin
data class AttributionData(
val deeplink: String?,
val campaignData: CampaignData,
val attributionSource: String
)
data class CampaignData(
val id: String,
val name: String,
val adNetwork: String?,
val type: String,
val installedAt: String,
val storeClickAt: String?,
val groupName: String,
val assetName: String,
val assetGroupName: String
)Setting User Data
Call setUserData each time the app opens and the user is logged in:
setUserData is optional and is not a replacement for signup. Always call signup first as soon as the user is identified (signup or login). Use setUserData afterwards only when additional user details become available later — for example, when the user adds a phone number, email, or completes their profile after identification.
kotlin
private fun setUserData() {
CoroutineScope(Dispatchers.IO).launch {
try {
val userData = UserDataRequest(
id = "123", // Required: User ID
name = "John Doe", // Optional
phone = "9876543210", // Optional
email = "user@example.com", // Optional
mixpanelDistinctId = "mixpanel_distinct_id", // Optional - Mixpanel Distinct ID
amplitudeDeviceId = "amplitude_device_id", // Optional - Amplitude User ID
posthogDistinctId = "posthog_distinct_id" // Optional - PostHog Distinct ID
)
val result = LinkRunner.getInstance().setUserData(userData)
result.onSuccess {
println("User data set successfully")
}.onFailure { error ->
println("Error setting user data: ${error.message}")
}
} catch (e: Exception) {
println("Exception setting user data: ${e.message}")
}
}
}Setting CleverTap ID
Use the setAdditionalData method to set CleverTap ID:
kotlin
private fun setIntegrationData() {
CoroutineScope(Dispatchers.IO).launch {
try {
val integrationData: IntegrationData = IntegrationData(clevertapId="YOUR_CLEVERTAP_ID")
val result = LinkRunner.getInstance().setAdditionalData(integrationData)
result.onSuccess {
println("CleverTap ID set successfully")
}.onFailure { error ->
println("Error setting CleverTap ID: ${error.message}")
}
} catch (e: Exception) {
println("Exception setting CleverTap ID: ${e.message}")
}
}
}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.
Capturing Payments
Track payment information with the following details:
kotlin
private fun capturePayment() {
CoroutineScope(Dispatchers.IO).launch {
try {
val paymentData = CapturePaymentRequest(
paymentId = "payment_123", // Optional: Unique payment identifier
userId = "user123", // Required: User identifier
amount = 99.99, // Required: Payment amount
type = PaymentType.FIRST_PAYMENT, // Optional: Defaults to DEFAULT
// type = PaymentType.SECOND_PAYMENT, // Optional: Defaults to DEFAULT
status = PaymentStatus.PAYMENT_COMPLETED, // Optional: Defaults to PAYMENT_COMPLETED
eventData = mapOf( // Optional: Ecommerce/custom event data
"content_ids" to listOf("product_123"),
"content_type" to "product",
"currency" to "USD",
"value" to 99.99,
"num_items" to 1,
"order_id" to "order_12345",
"contents" to listOf(
mapOf(
"id" to "product_123",
"quantity" to 1,
"item_price" to 99.99
)
)
)
)
val result = LinkRunner.getInstance().capturePayment(paymentData)
result.onSuccess {
println("Payment captured successfully")
}.onFailure { error ->
println("Error capturing payment: ${error.message}")
}
} catch (e: Exception) {
println("Exception capturing payment: ${e.message}")
}
}
}Available Payment Types
| Type | Description |
|---|---|
FIRST_PAYMENT | User's first payment |
SECOND_PAYMENT | User's second payment |
WALLET_TOPUP | Adding funds to wallet |
FUNDS_WITHDRAWAL | Withdrawing funds |
SUBSCRIPTION_CREATED | New subscription created |
SUBSCRIPTION_RENEWED | Subscription renewal |
ONE_TIME | One-time payment |
RECURRING | Recurring payment |
DEFAULT | Default payment type |
Available Payment Statuses
| Status | Description |
|---|---|
PAYMENT_INITIATED | Payment process started |
PAYMENT_COMPLETED | Payment successfully completed |
PAYMENT_FAILED | Payment failed |
PAYMENT_CANCELLED | Payment was cancelled |
Removing Payments
To remove or refund a payment:
kotlin
private fun removePayment() {
CoroutineScope(Dispatchers.IO).launch {
try {
// Either paymentId or userId must be provided
val removeRequest = RemovePaymentRequest(
paymentId = "payment_123", // Optional: Payment ID to remove
userId = "user123" // Optional: User ID to remove payments for
)
val result = LinkRunner.getInstance().removePayment(removeRequest)
result.onSuccess {
println("Payment removed successfully")
}.onFailure { error ->
println("Error removing payment: ${error.message}")
}
} catch (e: Exception) {
println("Exception removing payment: ${e.message}")
}
}
}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.
Track custom events in your app:
kotlin
private fun trackEvent() {
CoroutineScope(Dispatchers.IO).launch {
try {
val result = LinkRunner.getInstance().trackEvent(
eventName = "purchase_initiated", // Event name
eventData = mapOf( // Optional: Event data
"product_id" to "12345",
"category" to "electronics",
"amount" to 99.99 // Include amount as a number for revenue sharing with ad networks like Google and Meta
)
)
result.onSuccess {
println("Event tracked successfully")
}.onFailure { error ->
println("Error tracking event: ${error.message}")
}
} catch (e: Exception) {
println("Exception tracking event: ${e.message}")
}
}
}Revenue Sharing with Ad Networks
To enable revenue sharing with ad networks like Google Ads and Meta, include an amount parameter as a number in your custom event data. This allows the ad networks to optimize campaigns based on the revenue value of conversions:
kotlin
private fun trackPurchaseEvent() {
CoroutineScope(Dispatchers.IO).launch {
try {
val result = LinkRunner.getInstance().trackEvent(
eventName = "purchase_completed",
eventData = mapOf(
"product_id" to "12345",
"category" to "electronics",
"amount" to 149.99 // Revenue amount as a number
)
)
result.onSuccess {
println("Purchase event with revenue tracked successfully")
}.onFailure { error ->
println("Error tracking purchase event: ${error.message}")
}
} catch (e: Exception) {
println("Exception tracking purchase event: ${e.message}")
}
}
}For revenue sharing with ad networks to work properly, ensure the amount parameter is passed as a number (Double or Int), not as a string.
Ecommerce Events
Minimum SDK Version: Ecommerce Event Manager requires
linkrunner-androidv3.6.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 the trackEvent method to send an AddToCart event:
kotlin
private fun trackAddToCart() {
CoroutineScope(Dispatchers.IO).launch {
LinkRunner.getInstance().trackEvent(
eventName = "add_to_cart", // Map this custom event to "AddToCart" in the Linkrunner Dashboard
eventData = mapOf(
"content_ids" to listOf("product_123"),
"contents" to listOf(
mapOf(
"id" to "product_123", // Matches content_ids
"quantity" to 1,
"item_price" to 49.99
)
),
"content_type" to "product",
"currency" to "USD",
"value" to 49.99,
"num_items" to 1
)
)
}
}View Content Example
Use the trackEvent method to send a ViewContent event:
kotlin
private fun trackViewContent() {
CoroutineScope(Dispatchers.IO).launch {
LinkRunner.getInstance().trackEvent(
eventName = "view_item", // Map this custom event to "ViewContent" in the Linkrunner Dashboard
eventData = mapOf(
"content_ids" to listOf("product_123"),
"contents" to listOf(
mapOf(
"id" to "product_123", // Matches content_ids
"quantity" to 1,
"item_price" to 49.99
)
),
"content_type" to "product",
"currency" to "USD",
"value" to 49.99,
"num_items" to 1
)
)
}
}Payment / Purchase Example
Use the capturePayment method to send a Purchase event containing the ecommerce payload:
kotlin
private fun capturePurchase() {
CoroutineScope(Dispatchers.IO).launch {
try {
val paymentData = CapturePaymentRequest(
paymentId = "payment_456",
userId = "user123",
amount = 49.99,
type = PaymentType.FIRST_PAYMENT, // Map this payment type to "Purchase" in the Linkrunner Dashboard
status = PaymentStatus.PAYMENT_COMPLETED,
eventData = mapOf(
"content_ids" to listOf("product_123"),
"contents" to listOf(
mapOf(
"id" to "product_123", // Matches content_ids
"quantity" to 1,
"item_price" to 49.99
)
),
"content_type" to "product",
"currency" to "USD",
"value" to 49.99,
"num_items" to 1,
"order_id" to "order_abc123" // Required for Purchase events
)
)
LinkRunner.getInstance().capturePayment(paymentData)
} catch (e: Exception) {
println("Exception capturing purchase: ${e.message}")
}
}
}Note: For more information on testing and verifying your ecommerce events, please see our Testing Ecommerce Events guide.
Enhanced Privacy Controls
The SDK offers options to enhance user privacy:
kotlin
// Enable PII (Personally Identifiable Information) hashing
LinkRunner.getInstance().enablePIIHashing(true)
// Check if PII hashing is enabled
val isHashingEnabled = LinkRunner.getInstance().isPIIHashingEnabled()When PII hashing is enabled, sensitive user data like name, email, and phone number are hashed using SHA-256 before being sent to Linkrunner servers.
Disabling AAID Collection
SDK Version Requirement: The AAID collection disable functionality requires Android SDK version 3.5.0 or higher.
The SDK provides options to disable AAID (Google Advertising ID) collection. This is useful for apps targeting children or families to comply with Google Play's Family Policy.
Disable AAID Collection
To disable AAID collection, call setDisableAaidCollection before SDK initialization:
kotlin
// Disable AAID collection
LinkRunner.getInstance().setDisableAaidCollection(true)
// Check if AAID collection is disabled
val isDisabled = LinkRunner.getInstance().isAaidCollectionDisabled()When AAID collection is disabled, the SDK will not collect or send the Google Advertising ID (GAID) to Linkrunner servers.
Removing AD_ID Permission
If you want to completely remove the AD_ID permission from your app's manifest (for example, for apps targeting children), you can override the SDK's permission declaration in your AndroidManifest.xml. For detailed instructions on revoking the AD_ID permission, including Google's policy requirements for apps targeting children and Android 13+ (API 33+), see the Revoking the AD_ID Permission section above.
Uninstall Tracking
Before you begin
Here's what you need to know before getting started:
Requirements:
- Android SDK 3.2.1 and later
- Firebase Cloud Messaging in your Android project
Android
Connect Firebase Cloud Messaging (FCM) with Linkrunner
FCM HTTP v1 API
To configure FCM HTTP V1 for uninstalls:
Enable the FCM API:
- Go to the FCM console.
- Select a project.
- Go to Project Overview > Project settings.
- Copy the Project ID. This will be required in a later step.

- Go to the Cloud Messaging tab.
- Make sure that Firebase Cloud Messaging API (V1) is set to Enabled.
Create a custom role for Linkrunner Uninstall:
- Go to the Service accounts tab.
- Click Manage service account permissions.
- A new browser tab opens in Google Cloud Platform.
- In the side menu, select Roles.
- Click + Create role.
- Enter the following details:
- Title: Linkrunner Uninstalls
- ID: lr_uninstalls
- Role launch stage: General availability
- Click + Add permissions.
- In Enter property name or value field, enter
cloudmessaging.messages.createand select it from the search results.
- Check the cloudmessaging.messages.create option and click Add.
- Click Create.
Assign Linkrunner the FCM uninstall role:
- In the side menu, select IAM.
- Open the View by Principals tab.
- Click Grant Access.
- In Add Principals -> New principals field, enter
lr-uninstalls-tracking@lr-uninstalls-tracking.iam.gserviceaccount.com - In Assign Roles -> Select a role field, enter
Linkrunner Uninstallsand select it from the search results. - Click Save.
The Linkrunner service account has been assigned the role of Linkrunner Uninstalls.
Linkrunner Dashboard
- In Linkrunner, go to Settings > Uninstall Tracking.
- Under the Android tab, enter the Firebase Project ID that you copied initially and click Save.
![]()
Integrate with Linkrunner SDK
Follow these instructions to integrate FCM with the Linkrunner SDK:
- Set up Firebase Cloud Messaging:
Set up Firebase Cloud Messaging in your Android app. See the Firebase Cloud Messaging documentation for detailed instructions.
- Configure your app to provide the device's push token to the Linkrunner SDK.
kotlin
import com.google.firebase.messaging.FirebaseMessaging
import com.google.firebase.messaging.FirebaseMessagingService
import com.google.firebase.messaging.RemoteMessage
import io.linkrunner.sdk.LinkRunner
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
class MyFirebaseMessagingService : FirebaseMessagingService() {
override fun onNewToken(token: String) {
super.onNewToken(token)
// Send token to Linkrunner SDK
CoroutineScope(Dispatchers.IO).launch {
LinkRunner.getInstance().setPushToken(token)
}
}
override fun onMessageReceived(remoteMessage: RemoteMessage) {
super.onMessageReceived(remoteMessage)
// Check if this is an uninstall tracking notification
if (remoteMessage.data.containsKey("lr-uninstall-tracking")) {
// Silent notification for uninstall tracking, ignore
return
}
// Handle other messages here
}
}
// Initialize token on app start
fun initializePushToken() {
FirebaseMessaging.getInstance().token.addOnCompleteListener { task ->
if (task.isSuccessful) {
val token = task.result
CoroutineScope(Dispatchers.IO).launch {
LinkRunner.getInstance().setPushToken(token)
}
}
}
}Don't forget to register your service in AndroidManifest.xml:
xml
<service
android:name=".MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>Custom implementations of FCM's onMessageReceived method can unintentionally make uninstall push notifications visible to users, disrupting the intended silent experience. To avoid this, ensure your logic checks if the message contains lr-uninstall-tracking and handles it accordingly, as shown in the code example above.
Function Placement Guide
| Function | Where to Place | When to Call |
|---|---|---|
LinkRunner.getInstance().init | Application class | Once when app starts |
LinkRunner.getInstance().getAttributionData | Attribution data handling flow | Whenever the attribution data is needed |
LinkRunner.getInstance().setAdditionalData | Integration code | When third-party integration IDs are available |
LinkRunner.getInstance().signup | Identification flow (signup or login) | Once when the user is identified |
LinkRunner.getInstance().setUserData | Authentication logic | Every time app opens with logged-in user |
LinkRunner.getInstance().trackEvent | Throughout app | When specific user actions occur |
LinkRunner.getInstance().capturePayment | Payment processing | When user makes a payment |
LinkRunner.getInstance().removePayment | Refund flow | When payment needs to be removed |
LinkRunner.getInstance().setPushToken | Push notification setup | When FCM token is available |
LinkRunner.getInstance().handleDeeplink | Deep link entry points | When app is opened via a deep link |
LinkRunner.getInstance().setDisableAaidCollection | App initialization or privacy settings | When you need to disable AAID collection |
LinkRunner.getInstance().isAaidCollectionDisabled | Privacy settings or compliance checks | When you need to check AAID collection status |
Complete Example
Here's a simplified example showing how to integrate Linkrunner in a native Android app:
You can find your project token here.
kotlin
import android.app.Application
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import io.linkrunner.sdk.LinkRunner
import io.linkrunner.sdk.models.request.UserDataRequest
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
// Initialize LinkRunner with SDK signing
CoroutineScope(Dispatchers.IO).launch {
try {
LinkRunner.getInstance().init(
context = applicationContext,
token = "YOUR_PROJECT_TOKEN",
secretKey = "YOUR_SECRET_KEY", // Required for SDK signing
keyId = "YOUR_KEY_ID" // Required for SDK signing
)
} catch (e: Exception) {
println("Error initializing LinkRunner: ${e.message}")
}
}
}
}
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// Button to track an event
findViewById<android.widget.Button>(R.id.trackEventButton).setOnClickListener {
trackCustomEvent()
}
}
override fun onResume() {
super.onResume()
// Set user data if user is logged in
if (isUserLoggedIn()) {
setUserData()
}
}
private fun isUserLoggedIn(): Boolean {
// Your login check logic
return true
}
private fun setUserData() {
CoroutineScope(Dispatchers.IO).launch {
try {
val userData = UserDataRequest(
id = "123",
name = "John Doe",
email = "user@example.com"
)
LinkRunner.getInstance().setUserData(userData)
} catch (e: Exception) {
println("Error setting user data: ${e.message}")
}
}
}
private fun trackCustomEvent() {
CoroutineScope(Dispatchers.IO).launch {
try {
LinkRunner.getInstance().trackEvent(
eventName = "button_clicked",
eventData = mapOf("screen" to "main")
)
} catch (e: Exception) {
println("Error tracking event: ${e.message}")
}
}
}
}Next Steps
Test Your Integration
Validate your setup end-to-end
Set Up Deep Linking
Configure deep links for your app
Support
If you encounter issues during integration, contact us at support@linkrunner.io.