I am trying to use an intent-filter to intercept URLs on QR codes in the format:
https://qx.process.com?f=anyValue
That is, I only want to intercept it if the specified URL as the ‘f=’ parameter specified.
I have tried this, but it’s not working:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https" android:host="qx.process.com"
android:pathPrefix="\\?f=*">
</data>
</intent-filter>
The path concern only the path and not the queryString like your
?XXXX