i am trying to open the app for a specific URL using AppLinking or DeepLinking
As per what i have understood :
<data android:scheme="http"
android:host="example.org"
android:pathPrefix="/app"/>
i have to follow this format for receive a request with URL : http://example.org/app/......
but my concern is that i have two URLS https://example.org/somestring (URL to open product description) ProductDescActivity https://example.org/somestring-VS-somestring (URL to open Product comparison) ProductCompActivity
i have defined the structure in mainfest file like above but i dont have a fixed PathPrefix value
<data android:scheme="http"
android:host="example.org"
android:pathPrefix="?????????"/>
if i add this structure to both my activity then might both the activity opens up
How to manage the request and do a AppIndexing for this kind of url request where the pathPrefix is not fixed or to be more straight how to handle URL without any sub domains