I have a url, e.g. https://www.mobilePhoneSystem.com/{user}/registerDate/{date}. So the {user}
path-prefix is dynamic. I need to handle ONLY the deeplinks, that contains registerDate
.
I wrote in my manifest something like this
<!-- Deep linking-->
<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="https"
android:host="/www.mobilePhoneSystem.com"
android:pathPrefix="/registerDate" />
</intent-filter>
</activity>
But it doesn't trigger. When I add any user in mainfest, e.g. pathPrefix=/user111/registerDate
, it triggers and works fine. But the user is dynamic. So how can I handle this type of deeplink?