For deep linking, use intent filters described in the Launcher activity to get the parameters described in the link. You can have more than one data tags in an intent-filter. One such example is given below:
<activity
android:name=".views.activity.SplashActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:launchMode="singleTask"
android:theme="@style/ColdStart">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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:host="your host here"
android:scheme="https" />
</intent-filter>
</activity>