Deep Linking
Deep Links
Step 1: Add Intent Filters to Your Manifest
<activity
android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos">
<!-- Intent filter for handling HTTP URLs that begin with "http://www.example.com/gizmos" -->
<intent-filter android:label="@string/filter_view_http_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos" -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- Note: The leading "/" is required for pathPrefix -->
</intent-filter>
<!-- Intent filter for handling "example://gizmos" URIs -->
<intent-filter android:label="@string/filter_view_example_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "example://gizmos" -->
<data android:scheme="example"
android:host="gizmos" />
</intent-filter>
</activity>Step 2: Avoid Merging Data Elements in Intent Filters
Step 3: Enable Netmera SDK for Deep Link Handling
Step 4: Retrieve Deep Link URI in Your App
Android Deep Linking Documentation
Universal Links
Step 1: Configure the Project
Step 2: Configure the Website
Deeplink Callbacks
Custom Intent Handling
Step 1: Configure Deeplink in Push Action
Step 2: Implement a Custom Callback in the Android SDK
Last updated
Was this helpful?