How would the deep link in the manifest be to open an activity with this link
https://myapp.domain.com/#/view/abc
where only abc is the argument that changes and is the one that I need the app to take as a parameter .
I have tried this but it did not work
<data
android:host="myapp.domain.com"
android:pathPrefix="/#/view"
android:scheme="https" />
<data
android:host="myapp.domain.com"
android:pathPrefix="/#/view"
android:scheme="http" />
<data
android:host="myapp.domain.com"
android:pathPrefix="/#/view"
android:scheme="app" />