I am trying to open the app for links that look like this -
http://www.somesite.com/abcd.html?defg&opener=mail
I have tried (does not work):
<intent-filter>
<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.somesite.com"
android:scheme="http"
android:pathPattern=".*opener=mail" />
</intent-filter>
And for testing purpose it works without pathPattern added for any site that contains that host, but i need it to work only for this exactly site with "opener=mail" ending.