Given the following URLS:
1. www.example.com
2. www.example.com/a
Via deeplinking, I want my app to only react on 1
and not 2
.
<data
android:host="*.example.com"
android:pathPrefix="/"
android:scheme="http"/>
This will, of course, catch all www.example.com/...
urls, how can I match only www.example.com
without any path and not match www.example.com/a
?
<data android:host="example.com" android:path="" android:scheme="http"/>
? – Tymes