I am facing with a specific problem with deep link. I mean , for the universal Link I have something like
https://www.website.com/LANGUAGE/dashboard/profile
that means language can be /en/ /fr/ /de/ /it/ /es/
and more...
The problem is I try in my Manifest :
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="www.website.com"
android:scheme="https"
android:path="/*/dashboard/profile"/>
</intent-filter>
But the *
does not work. Any solution please?