Skip to main content

Deeplink Configuration

Nuclei SDK is deep link enabled and the same can be configured to your own schema and host. Nuclei SDK can handle deep links in the format of <scheme>://<host>/pathPrefix.  

  1. In case you have your own deep link handler, please add the below code in your AndroidManifest.xml file and replace SCHEMA and HOST with your own values.
<application
....

<activity android:name="com.nuclei.activity.deeplink.ExternalDeeplinkHandlerActivity">
<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="<SCHEMA>"
android:host="<HOST>"
android:pathPrefix="/nuclei" />
</intent-filter>
</activity>
....
</application>