Deep Links
Deep links enable your application to open specific screens or content directly from notifications, web pages, or external sources. By integrating deep links, you can guide users to precise destinations within your app — enhancing engagement and creating seamless navigation between notifications, campaigns, and in-app experiences.
Overview
Handling deep links in your Android application allows you to:
- Support Deep Link notification types from Actito.
- Handle custom URL schemes or HTTPS links from web pages.
Once configured, your app can interpret incoming URLs and display the appropriate screen or content dynamically.
Declaring a custom URL scheme
- Android
- iOS
To enable your app to handle a custom URL scheme, declare an activity and its corresponding intent filter in your AndroidManifest.xml. Be sure to update the android:scheme attribute to match your own application’s scheme.
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="com.example" />
</intent-filter>
</activity>
To enable your app to handle a custom URL scheme, declare your custom URL scheme in your Info.plist. Be sure to update the scheme to match yours.

With this configuration, links such as com.example://example.com/product?id=1 will automatically open your application.