Exclude few Urls from deeplinking
I could successfully implement deeplinking of app using following filter in the intent-filter in my Manifest:
Eg. My Urls are:
http://myhost.com/v/login1.php?id=123&name=abc&type=a
http://myhost.com/v/login1.php?id=123&name=abc&type=b
I want to exclude
http://myhost.com/v/login1.php?id=123&name=abc&type=c
Now I want to exclude a few Urls which have same prefix. Is it possible or Do I need to explicitly specify all urls with android:path ? If so, how to deal with values of query parameters?